
        :root {
            --primary-color: #5CBDEA;
            --secondary-color: #E0BA16;
            --light-gray: #d8d9d7;
            --dark-color: #2c3e50;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 20px 0;
            background: transparent !important;
            box-shadow: none;
        }
        
        .navbar-nav {
            justify-content: center;
            width: 100%;
        }
        
        .navbar-nav .nav-link {
            color: var(--dark-color) !important;
            font-weight: 500;
            margin: 0 15px;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .btn-cta {
            background: var(--secondary-color);
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
        }
        
        .btn-cta:hover {
            background: #c4a213;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(224, 186, 22, 0.3);
        }
        
        /* Hero Section */
        .hero-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(92, 189, 234, 0.1) 0%, rgba(224, 186, 22, 0.1) 100%);
        }
        
        .hero-title {
            font-size: 3rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 20px;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 30px;
        }
        
        /* Section Spacing */
        .section-padding {
            padding-top: 80px;
            padding-bottom: 80px;
        }
        
        /* Card Styles */
        .service-card, .feature-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        
        .service-card:hover, .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-card img {
            height: 200px;
            object-fit: cover;
        }
        
        .feature-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        /* Counter Styles */
        .counter-box {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        /* CTA Section */
        .cta-section {
            background: var(--primary-color);
            color: white;
            padding: 80px 0;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        /* FAQ Styles */
        .accordion-button:not(.collapsed) {
            background-color: var(--primary-color);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary-color);
        }
        
        /* Review Styles */
        .review-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            height: 100%;
        }
        
        .review-stars {
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        /* Footer Styles */
        footer {
            background: var(--dark-color);
            color: white;
            padding: 60px 0 30px;
        }
        
        footer h5 {
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        footer a {
            color: var(--light-gray);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        footer a:hover {
            color: var(--primary-color);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 40px;
            padding-top: 20px;
        }
        
        /* Contact Form */
        .contact-form input, .contact-form textarea {
            border: 2px solid var(--light-gray);
            border-radius: 10px;
            padding: 12px;
            transition: border-color 0.3s;
        }
        
        .contact-form input:focus, .contact-form textarea:focus {
            border-color: var(--primary-color);
            box-shadow: none;
        }
        
        /* Newsletter */
        .newsletter-section {
            background: linear-gradient(135deg, var(--primary-color), #4a9dd1);
            color: white;
            padding: 60px 0;
        }
        
        .btn-subscribe {
            background: var(--secondary-color);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-subscribe:hover {
            background: #c4a213;
            transform: translateY(-2px);
        }
