    :root {
            --primary-color: #E85D04;
            --secondary-color: #2A9D8F;
            --accent-color: #F4A261;
            --dark-color: #1A1A1A;
            --light-bg: #F8F9FA;
        }
        
        @font-face{font-family:'Open Sans';font-display:swap}
        @font-face{font-family:'Montserrat';font-display:swap}
        
        body{font-family:'Open Sans',sans-serif;color:var(--dark-color);line-height:1.6}
        
        h1,h2,h3,h4,h5,h6{font-family:'Montserrat',sans-serif;font-weight:700}
        
        .navbar{
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand img {
            height: 50px;
            width: auto;
        }
        
        .nav-link {
            color: var(--dark-color) !important;
            font-weight: 600;
            margin: 0 0.5rem;
            transition: color 0.3s;
            font-size: 0.95rem;
        }
        
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .btn-primary-custom {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: #fff;
            font-weight: 600;
            padding: 0.75rem 2rem;
            transition: all 0.3s;
            border-radius: 0;
        }
        
        .btn-primary-custom:hover {
            background-color: #d14d00;
            border-color: #d14d00;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(232, 93, 4, 0.3);
        }
        
        .btn-secondary-custom {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            color: #fff;
            font-weight: 600;
            padding: 0.75rem 2rem;
            transition: all 0.3s;
            border-radius: 0;
        }
        
        .btn-secondary-custom:hover {
            background-color: #238276;
            border-color: #238276;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(42, 157, 143, 0.3);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(232, 93, 4, 0.05) 0%, rgba(42, 157, 143, 0.05) 100%);
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: var(--accent-color);
            opacity: 0.05;
            transform: rotate(45deg);
        }
        
        .hero-section h1 {
            font-size: 3rem;
            color: var(--dark-color);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero-section h1 .highlight {
            color: var(--primary-color);
        }
        
        .hero-section .lead {
            font-size: 1.25rem;
            color: #555;
            margin-bottom: 2rem;
        }
        
        .stats-row {
            margin-top: 3rem;
        }
        
        .stat-box {
            text-align: center;
            padding: 1.5rem;
            background: #fff;
            border-top: 4px solid var(--secondary-color);
            height: 140px;
        }
        
        .stat-number {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary-color);
            font-family: 'Montserrat', sans-serif;
        }
        
        .stat-label {
            font-size: 0.95rem;
            color: #666;
            font-weight: 600;
        }
        
        /* Services Section */
        .services-section {
            padding: 80px 0;
            background-color: #fff;
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 3rem;
        }
        
        .service-card {
            padding: 2rem;
            background: var(--light-bg);
            height: 100%;
            transition: all 0.3s;
            border-left: 4px solid transparent;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-left-color: var(--primary-color);
        }
        
        .service-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }
        
        .service-card p {
            color: #666;
            margin-bottom: 1.5rem;
        }
        
        .service-keyword {
            font-size: 0.85rem;
            color: var(--secondary-color);
            font-weight: 600;
            display: block;
            margin-bottom: 1rem;
        }
        
        /* Niches Section */
        .niches-section {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(42, 157, 143, 0.03) 0%, rgba(244, 162, 97, 0.03) 100%);
        }
        
        .niche-card {
            background: #fff;
            padding: 2.5rem;
            margin-bottom: 2rem;
            border-top: 5px solid var(--accent-color);
            transition: all 0.3s;
        }
        
        .niche-card:hover {
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }
        
        .niche-card h3 {
            font-size: 1.75rem;
            color: var(--dark-color);
            margin-bottom: 1rem;
        }
        
        .niche-card ul {
            list-style: none;
            padding: 0;
        }
        
        .niche-card ul li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
        }
        
        .niche-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: 700;
        }
        
        /* Google Reviews Section */
        .google-reviews-section {
            padding: 80px 0;
            background-color: #fff;
        }
        
        .google-reviews-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .google-rating-summary {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: #fff;
            padding: 3rem;
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .google-rating-summary h3 {
            color: #fff;
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        .rating-stars {
            font-size: 3rem;
            color: #FFD700;
            margin: 1rem 0;
        }
        
        .rating-score {
            font-size: 3.5rem;
            font-weight: 700;
            margin: 0.5rem 0;
        }
        
        .rating-count {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .review-card {
            background: var(--light-bg);
            padding: 2rem;
            height: 100%;
            position: relative;
            margin-bottom: 2rem;
        }
        
        .review-stars {
            color: #FFD700;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }
        
        .review-text {
            color: #555;
            margin-bottom: 1.5rem;
            font-style: italic;
        }
        
        .review-author {
            font-weight: 600;
            color: var(--secondary-color);
            font-size: 0.95rem;
        }
        
        .review-date {
            font-size: 0.85rem;
            color: #999;
        }
        
        .google-link-btn {
            background-color: #fff;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            font-weight: 700;
            padding: 1rem 3rem;
            font-size: 1.1rem;
            transition: all 0.3s;
            display: inline-block;
            text-decoration: none;
            border-radius: 0;
        }
        
        .google-link-btn:hover {
            background-color: var(--primary-color);
            color: #fff;
            text-decoration: none;
            transform: scale(1.05);
        }
        
        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: #fff;
            text-align: center;
        }
        
        .cta-section h2 {
            color: #fff;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        
        .btn-cta {
            background-color: #fff;
            color: var(--primary-color);
            font-weight: 700;
            padding: 1rem 3rem;
            font-size: 1.1rem;
            transition: all 0.3s;
            border-radius: 0;
        }
        
        .btn-cta:hover {
            background-color: var(--accent-color);
            color: #fff;
            transform: scale(1.05);
        }
        
        /* Footer */
        .footer {
            background-color: var(--dark-color);
            color: #fff;
            padding: 3rem 0 1rem;
        }
        
        .footer h5 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer a:hover {
            color: var(--primary-color);
        }
        
        .footer-bottom {
            border-top: 1px solid #333;
            margin-top: 2rem;
            padding-top: 1.5rem;
            text-align: center;
            color: #999;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .nav-link {
                margin: 0.5rem 0;
            }
        }