@font-face {
    font-family: 'Qualy';
    src: url('Qualy.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --green-primary: #2e403d;
    --green-dark: #1f2c2a;
    --green-accent: #c9dd80;
    --cream: #fbf8f1;
    --yellow: #ffc107;
    --charcoal: #2a2a2a;
    --gray: #6b7280;
    --gray-light: #f5f5f5;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Qualy', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--charcoal);
    line-height: 1.6;
    background: var(--white);
    padding-top: 130px; /* Account for top bar + nav */
}

/* Top Contact Bar */
.top-bar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--green-primary);
    color: white;
    z-index: 1001;
    padding: 0.6rem 0;
    font-size: 0.9rem;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: opacity 0.3s ease;
}

.top-bar-link:hover {
    opacity: 0.8;
}

.top-bar-icon {
    font-size: 1rem;
}

.top-bar-divider {
    opacity: 0.5;
}

.top-bar-text {
    font-size: 0.85rem;
}

.top-bar-cta {
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-right: 1rem;
}

/* Animated Stats Banner */
.stats-banner {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.stats-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 50%, rgba(201, 221, 128, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--green-accent);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}


h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
nav {
    position: fixed;
    top: 45px; /* Below top bar */
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(46, 64, 61, 0.08);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-bottom-color: rgba(46, 64, 61, 0.12);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 120px;
    width: auto;
    transition: all 0.3s ease;
}

nav.scrolled .logo-img {
    height: 80px;
}

.logo:hover .logo-img {
    opacity: 0.85;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-dark);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--green-primary);
}

.cta-nav {
    padding: 0.6rem 1.5rem;
    background: var(--green-primary);
    color: white !important;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.cta-nav:hover {
    background: var(--green-dark);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--green-dark);
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    margin-top: 0;
    position: relative;
    text-align: center;
    padding: 10rem 0 8rem;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1558904541-efa843a96f01?w=1600&q=80');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 64, 61, 0.7);
    z-index: 1;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 221, 128, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(46, 64, 61, 0.7);
    z-index: 1;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.8rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 1.1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--green-primary);
    color: white;
    box-shadow: 0 4px 14px rgba(46, 64, 61, 0.25);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 64, 61, 0.35);
}

.btn-secondary {
    background: white;
    color: var(--green-primary);
    border: 2px solid var(--green-primary);
    box-shadow: 0 4px 14px rgba(46, 64, 61, 0.08);
}

.btn-secondary:hover {
    background: var(--green-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 64, 61, 0.2);
}

.btn-lg {
    padding: 1.3rem 3rem;
    font-size: 1.15rem;
}

/* How It Works */
.how-it-works {
    padding: 7rem 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 4rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--green-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 20px rgba(46, 64, 61, 0.2);
}

.step h3 {
    font-size: 1.5rem;
    color: var(--green-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.step p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Services Section */
.services {
    padding: 7rem 0;
    background: var(--gray-light);
}

.section-title {
    font-size: 3rem;
    color: var(--green-dark);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.service-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--green-accent);
}

.service-card.featured {
    border-color: var(--green-primary);
    box-shadow: 0 12px 35px rgba(46, 64, 61, 0.18);
    background: linear-gradient(135deg, #ffffff 0%, #fafffe 100%);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 25px;
    background: var(--yellow);
    color: var(--charcoal);
    padding: 0.5rem 1.3rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.06));
}

.service-card h3 {
    font-size: 1.8rem;
    color: var(--green-dark);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.service-tagline {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.5;
}

.service-includes {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
}

.service-includes li {
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--charcoal);
}

.service-includes li::before {
    content: '✓';
    color: var(--green-primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-cta {
    display: inline-block;
    margin-top: 1rem;
    color: var(--green-primary);
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.service-cta:hover {
    transform: translateX(5px);
}

/* Individual Services */
.individual-services {
    text-align: center;
    margin-top: 4rem;
}

.individual-services h3 {
    font-size: 1.4rem;
    color: var(--green-dark);
    margin-bottom: 1.5rem;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.tag {
    background: white;
    padding: 0.7rem 1.3rem;
    border-radius: 25px;
    font-size: 0.95rem;
    color: var(--charcoal);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.tag:hover {
    border-color: var(--green-accent);
    color: var(--green-primary);
    background: rgba(201, 221, 128, 0.1);
}

/* Testimonials */
.testimonials {
    padding: 7rem 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.testimonial-card {
    background: var(--gray-light);
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--green-accent);
}

.stars {
    color: var(--yellow);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.15em;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.testimonial-author {
    font-weight: 600;
    color: var(--green-dark);
    font-size: 1rem;
}

.testimonial-cta {
    text-align: center;
}

/* Why Choose Us */
.why-choose {
    padding: 7rem 0;
    background: var(--cream);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.benefit {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.05));
}

.benefit h4 {
    font-size: 1.3rem;
    color: var(--green-dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.benefit p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Service Areas */
.service-areas {
    padding: 5rem 0;
    background: white;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.area {
    background: var(--gray-light);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.areas-note {
    text-align: center;
    margin-top: 2rem;
    color: var(--gray);
}

.areas-note a {
    color: var(--green-primary);
    font-weight: 600;
    text-decoration: underline;
}

/* Final CTA */
.final-cta {
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201, 221, 128, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta .container-narrow {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.final-cta .btn-primary {
    background: white;
    color: var(--green-primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.final-cta .btn-primary:hover {
    background: var(--cream);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: var(--green-dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

/* About Page Styles */
.page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.page-hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.page-hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(46, 64, 61, 0.7);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.about-section {
    padding: 5rem 0;
    background: white;
}

.story-content {
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--charcoal);
}

.story-content p {
    margin-bottom: 1.5rem;
}

.team-section {
    padding: 5rem 0;
    background: var(--gray-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.team-photo {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--green-accent);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.15);
}

.team-member h3 {
    font-size: 1.5rem;
    color: var(--green-dark);
    margin-bottom: 0.3rem;
}

.team-role {
    color: var(--green-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--gray);
    line-height: 1.6;
}

.mission-section {
    padding: 5rem 0;
    background: var(--cream);
}

.mission-content {
    line-height: 1.8;
    font-size: 1.2rem;
    color: var(--charcoal);
}

.mission-content p {
    margin-bottom: 1.5rem;
}

.values-section {
    padding: 5rem 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    padding: 2.5rem;
    background: var(--gray-light);
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--green-dark);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--gray);
    line-height: 1.7;
    text-align: left;
}

.stats-section {
    padding: 4rem 0;
    background: var(--green-primary);
    color: white;
}

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

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--green-accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

.about-cta {
    padding: 5rem 0;
    background: white;
    text-align: center;
}

.about-cta h2 {
    font-size: 2.5rem;
    color: var(--green-dark);
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.2rem;
    color: var(--gray);
}

.nav-links a.active {
    color: var(--green-primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 2.5rem;
    }

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

    .team-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-col p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-col a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 0.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 160px; /* More space for stacked top bar */
    }

    .top-bar {
        padding: 0.5rem 0;
    }

    .top-bar-container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .top-bar-left, .top-bar-right {
        flex-direction: column;
        gap: 0.3rem;
    }

    .top-bar-divider {
        display: none;
    }

    .top-bar-cta {
        font-size: 0.8rem;
        margin-right: 0;
    }

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

    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .hero {
        padding: 6rem 0 5rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-lg {
        width: 100%;
        text-align: center;
    }

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

    .section-subtitle {
        font-size: 1.1rem;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .logo-img {
        height: 50px;
    }

    nav.scrolled .logo-img {
        height: 45px;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .final-cta p {
        font-size: 1.1rem;
    }
}
/* Mobile Optimization - Reduce scroll length */
@media (max-width: 768px) {
    /* Hide second and third testimonials on mobile */
    .testimonials-grid .testimonial-card:nth-child(2),
    .testimonials-grid .testimonial-card:nth-child(3) {
        display: none;
    }
    
    /* Make stats section more compact */
    .stats-banner {
        padding: 2rem 0;
    }
    
    .stats-banner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem !important;
    }
    
    .stat-label {
        font-size: 0.75rem !important;
    }
    
    /* Condense How It Works section */
    .how-it-works {
        padding: 2rem 0;
    }
    
    .steps-grid {
        gap: 1.5rem;
    }
    
    .step {
        padding: 1rem;
    }
    
    /* Condense Services section */
    .services {
        padding: 2rem 0;
    }
    
    .services-grid {
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    /* Condense Why Choose Us */
    .why-choose {
        padding: 2rem 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit {
        padding: 1rem;
    }
    
    /* Make testimonials section more compact */
    .testimonials {
        padding: 2rem 0;
    }
    
    /* Condense service areas */
    .service-areas {
        padding: 2rem 0;
    }
    
    .areas-grid {
        gap: 0.5rem;
    }
    
    .area {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Make final CTA more compact */
    .final-cta {
        padding: 2rem 0;
    }
    
    .final-cta h2 {
        font-size: 1.8rem;
    }
}
