:root {
            --color-primary: #00563f;
            --color-accent: #ffc107;
            --color-light: #f0f4f9;
            --color-dark: #1a1a1a;
            --color-text: #333333;
            --color-border: #e0e0e0;
            --color-success: #10b981;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--color-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        

        /* Navigation */
        .navbar {
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar-brand {
            font-size: 1.6rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-link {
            color: var(--color-text) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: var(--color-primary) !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-accent);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .btn-nav {
            background: linear-gradient(135deg, var(--color-primary) 0%, #004030 100%);
            color: white !important;
            padding: 0.7rem 1.8rem;
            border-radius: 50px;
            border: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 86, 63, 0.2);
        }

        .btn-nav:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 86, 63, 0.3);
        }

        /* Hero Section */
        .hero {
                background: linear-gradient(135deg, #00513b 0%, #00503b 50%, #00513c 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
            opacity: 0.08;
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -15%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
            opacity: 0.05;
            border-radius: 50%;
            animation: float 8s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(30px); }
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4.5rem;
            font-weight: 800;
        color:#fff !important;
            /* -webkit-background-clip: text;
            -webkit-text-fill-color: transparent; */
            background-clip: text;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .hero p {
            font-size: 1.3rem;
            color: #ffffff;
            margin-bottom: 2.5rem;
            max-width: 650px;
            font-weight: 300;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }

        .btn-primary-hero {
            background: linear-gradient(135deg, var(--color-primary) 0%, #004030 100%);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            border: none;
            font-weight: 700;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(0, 86, 63, 0.25);
        }

        .btn-primary-hero:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 35px rgba(0, 86, 63, 0.35);
        }

        .btn-secondary-hero {
            background: white;
            color: var(--color-primary);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            border: 2px solid var(--color-primary);
            font-weight: 700;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-secondary-hero:hover {
            background: var(--color-accent);
            color: #000;
            transform: translateY(-4px);
        }

        .hero-image {
            position: relative;
            z-index: 1;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
        }

        .hero-image:hover img {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
        }

        /* Stats Section */
        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
            position: relative;
            z-index: 1;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            border: 1px solid rgba(0, 86, 63, 0.1);
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            background: white;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1rem;
            font-weight: 600;
            color: var(--color-primary);
        }

        /* About Section */
        .about {
            padding: 100px 0;
            background: white;
            position: relative;
            overflow: hidden;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.2rem;
            font-weight: 800;
            color: var(--color-primary);
            margin-bottom: 1rem;
            text-align: center;
        }

        .section-subtitle {
            font-size: 1.15rem;
            color: #666;
            margin-bottom: 3.5rem;
            text-align: center;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .about-card {
            background: linear-gradient(135deg, var(--color-light) 0%, #ffffff 100%);
            padding: 2.5rem;
            border-radius: 12px;
            border-left: 5px solid var(--color-accent);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .about-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
            opacity: 0.05;
            border-radius: 50%;
        }

        .about-card-content {
            position: relative;
            z-index: 1;
        }

        .about-card h3 {
            color: var(--color-primary);
            margin-bottom: 1rem;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .about-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--color-light) 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .services::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
            opacity: 0.05;
            border-radius: 50%;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            position: relative;
            z-index: 1;
        }

        .service-card {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
            border-top: 4px solid transparent;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            font-size: 3.5rem;
            color: var(--color-primary);
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            color: var(--color-accent);
            transform: scale(1.1);
        }

        .service-card h4 {
            color: var(--color-primary);
            margin-bottom: 1rem;
            font-weight: 700;
            font-size: 1.3rem;
        }

        .service-card p {
            color: #666;
            font-size: 0.95rem;
        }

        /* Why Choose Section */
        .why-choose {
            padding: 100px 0;
            background: white;
            position: relative;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            position: relative;
            z-index: 1;
        }

        .feature-item {
            padding: 2.5rem;
            background: linear-gradient(135deg, var(--color-light) 0%, #ffffff 100%);
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .feature-item::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .feature-item:hover {
            transform: translateY(-8px);
            border-color: var(--color-accent);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--color-primary);
            transition: all 0.3s ease;
        }

        .feature-item:hover .feature-icon {
            color: var(--color-accent);
            transform: scale(1.15);
        }

        .feature-item h5 {
            color: var(--color-primary);
            font-weight: 700;
            margin-bottom: 0.8rem;
        }

        .feature-item p {
            color: #666;
            font-size: 0.95rem;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--color-light) 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: -30%;
            left: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
            opacity: 0.05;
            border-radius: 50%;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            position: relative;
            z-index: 1;
        }

        .testimonial-card {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-top: 4px solid var(--color-accent);
            position: relative;
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '❝';
            position: absolute;
            top: -20px;
            right: 15px;
            font-size: 80px;
            color: var(--color-accent);
            opacity: 0.1;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        }

        .rating {
            color: var(--color-accent);
            margin-bottom: 1rem;
            font-size: 1.1rem;
            letter-spacing: 3px;
        }

        .testimonial-text {
            color: #555;
            margin-bottom: 1.5rem;
            font-style: italic;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .testimonial-author {
            font-weight: 700;
            color: var(--color-primary);
            font-size: 1rem;
        }

        .testimonial-meta {
            color: #999;
            font-size: 0.85rem;
            margin-top: 0.3rem;
        }

        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background: white;
            position: relative;
            overflow: hidden;
        }

        .faq::after {
            content: '';
            position: absolute;
            bottom: -30%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
            opacity: 0.08;
            border-radius: 50%;
        }

        .faq-container {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }

        .accordion-item {
            border: none;
            margin-bottom: 1rem;
            background: transparent;
            box-shadow: none;
        }

        .accordion-button {
            background: linear-gradient(135deg, var(--color-light) 0%, #ffffff 100%);
            color: var(--color-primary);
            font-weight: 600;
            font-size: 1.05rem;
            border: 2px solid transparent;
            border-radius: 10px;
            padding: 1.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
            position: relative;
        }

        .accordion-button:not(.collapsed) {
            background: linear-gradient(135deg, var(--color-primary) 0%, #004030 100%);
            color: white;
            border-color: var(--color-primary);
            box-shadow: 0 8px 25px rgba(0, 86, 63, 0.15);
        }

        .accordion-button:hover {
            border-color: var(--color-accent);
            box-shadow: 0 6px 20px rgba(0, 86, 63, 0.12);
        }

        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
            transition: transform 0.3s ease;
        }

        .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        .accordion-body {
            background: linear-gradient(135deg, rgba(240, 244, 249, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%);
            color: #555;
            line-height: 1.8;
            border-radius: 0 0 10px 10px;
            border: 2px solid var(--color-light);
            border-top: none;
            padding: 1.8rem;
            font-size: 0.95rem;
            backdrop-filter: blur(10px);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--color-primary) 0%, #004030 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top: 100px;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
            opacity: 0.1;
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, white 0%, transparent 70%);
            opacity: 0.05;
            border-radius: 50%;
            animation: float 10s ease-in-out infinite reverse;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            margin-bottom: 1.5rem;
            font-weight: 800;
            line-height: 1.2;
        }

        .cta-section p {
            font-size: 1.15rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
        }

        .btn-cta-white {
            background: white;
            color: var(--color-primary);
            padding: 1rem 2.8rem;
            border-radius: 50px;
            border: none;
            font-weight: 700;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            cursor: pointer;
            display: inline-block;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .btn-cta-white:hover {
            background: var(--color-accent);
            color: var(--color-primary);
            transform: translateY(-4px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
        }

        /* Lead Form */
        .lead-form {
            padding: 50px 0;
            background: white;
            position: relative;
            overflow: hidden;
        }

        .lead-form::before {
            content: '';
            position: absolute;
            top: -40%;
            left: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
            opacity: 0.05;
            border-radius: 50%;
        }

        .form-card {
            background: linear-gradient(135deg, var(--color-light) 0%, #ffffff 100%);
            padding: 3.5rem;
            border-radius: 15px;
            max-width: 900px;
            margin: 0 auto;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
            border: 2px solid rgba(0, 86, 63, 0.1);
            position: relative;
            z-index: 1;
        }

        .form-group {
            margin-bottom: 1.8rem;
        }

        .form-label {
            color: var(--color-primary);
            font-weight: 700;
            margin-bottom: 0.7rem;
            font-size: 0.95rem;
        }

        .form-control {
            border: 2px solid var(--color-light);
            border-radius: 8px;
            padding: 0.9rem 1.2rem;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            background: white;
        }

        .form-control:focus {
            border-color: var(--color-primary);
            box-shadow: 0 0 0 0.3rem rgba(0, 86, 63, 0.15);
            outline: none;
        }

        .btn-submit {
            background: linear-gradient(135deg, var(--color-primary) 0%, #004030 100%);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            border: none;
            font-weight: 700;
            font-size: 1rem;
            width: 100%;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0, 86, 63, 0.2);
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 86, 63, 0.3);
        }

        .stats-section {
  background-color: #fff;
}

.stat-card {
  background:#fff;
  color:#000;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 1rem 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height:150px;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
  color: var(--accent);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 0.5rem;
  font-weight: 600;
}



/* Destinations Section */
.destinations-section {
  width: 100%;
  padding: 80px 0;
}

.destinations-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
 
}

.destinations-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 300;
}

/* Symmetric 3-column grid layout using CSS Grid */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  padding: 2rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

/* Destination Item Container */
.destination-item {
  perspective: 1000px;
}

/* Destination Card with image background */
.destination-card {
  position: relative;
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.destination-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

/* Background image for cards */
.destination-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.destination-card:hover .destination-image {
  transform: scale(1.08);
}

/* Dark overlay for text visibility */
.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
  transition: background 0.5s ease;
}

.destination-card:hover .destination-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
}

/* Content positioning on card */
.destination-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 1.5rem;
  color: white;
  text-align: center;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0.9;
}

.destination-card:hover .destination-content {
  transform: translateY(0);
  opacity: 1;
}

/* Destination name styling */
.destination-name {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
}

/* Description text styling */
.destination-description {
  font-size: 0.95rem;
  margin: 0.5rem 0 1rem 0;
  font-weight: 400;
  opacity: 0.95;
  transition: all 0.4s ease;
}

.destination-card:hover .destination-description {
  transform: translateY(-5px);
}

/* Arrow link styling with Font Awesome */
.destination-link {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: white;
  font-size: 0.9rem;
  transition: all 0.4s ease;
  line-height: 40px;
  text-decoration: none;
}

.destination-link:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translateX(5px);
  color: white;
}


        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3.2rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .cta-section h2 {
                font-size: 2.3rem;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 60px 0;
            }

            .hero h1 {
                font-size: 2.3rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn-primary-hero,
            .btn-secondary-hero {
                width: 100%;
            }

            .section-title {
                font-size: 2rem;
            }

            .stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .about, .services, .why-choose, .testimonials, .faq, .lead-form {
                padding: 70px 0;
            }

            .cta-section {
                padding: 60px 0;
            }

            .cta-section h2 {
                font-size: 1.8rem;
            }

            .form-card {
                padding: 2.5rem;
            }

            .accordion-button {
                font-size: 0.95rem;
                padding: 1.2rem;
            }

            .accordion-body {
                padding: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .navbar-brand {
                font-size: 1.3rem;
            }

            .nav-link {
                margin: 0.3rem 0;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .section-title {
                font-size: 1.7rem;
            }

            .stats {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .stat-item {
                padding: 1.5rem;
            }

            .form-card {
                padding: 2rem;
            }

            .cta-section h2 {
                font-size: 1.5rem;
            }
        }