:root {
    --primary-color: #2563EB; /* Blue */
    --primary-hover: #1D4ED8;
    --text-color: #1F2937; /* Dark Gray */
    --text-light: #4B5563; /* Gray */
    --white: #FFFFFF;
    --bg-light: #F9FAFB;
    --bg-blue-light: #EFF6FF; /* Very light blue for contact section */
    --font-family: 'Inter', sans-serif;
    --container-width: 1280px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --blue-section: #4C7BF4; /* Lighter blue for features section */
}

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

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.5;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-xl);
    font-weight: 500;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
    border-radius: var(--radius-sm); /* Per image, Book Now looks slightly less rounded than header btn? Actually looks fully rounded in standard css usually, but image shows rounded rectangle. Let's stick to rounded rectangle for hero btn */
    border-radius: 12px;
}

.btn-block {
    width: 100%;
    border-radius: 12px; /* Contact form button styling */
    background-color: #93C5FD; /* Light blue from image? Actually image shows a lighter blue button in form. Let's pick a lighter blue */
    background-color: #818CF8; /* Indigo-ish blue from image */
    background-color: #9DB2F5; /* Custom light blue */
}

.btn-block:hover {
    background-color: var(--primary-color);
}


/* Header */
.header {
    padding: 24px 0;
    position: sticky;
    top: 0;
    background-color: var(--white);
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.logo-icon {
    background-color: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 24px;
}

.nav-menu ul {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-color);
    transition: color 0.3s;
}

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

.header-btn {
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 100px; /* Fully rounded pill shape */
}

/* Hero Section */
.hero {
    padding: 60px 0 100px;
    overflow: hidden; /* Prevent image overflow issues */
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.sub-headline {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 16px;
    font-weight: 500;
}

.headline {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 600; /* Looks slightly bolder */
    color: #000;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 32px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #F3F4F6; /* Light gray bg */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-color);
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text .label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #000;
}

.contact-text .number {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Hero Image */
.hero-image {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    aspect-ratio: 1 / 0.9; /* Approximate aspect ratio from image */
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Introduction Section */
.intro {
    padding: 60px 0 120px;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: #000;
    margin-bottom: 60px;
    letter-spacing: -0.01em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(37, 99, 235, 0.1); /* Light blue */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}

.feature-desc {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

.intro-video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 40px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.intro-video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    font-size: 32px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--primary-hover);
}

/* Stats Section */
.stats {
    padding: 60px 0 100px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 500; /* As per image, not super bold but large */
    color: #111;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    line-height: 1;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* Services Section */
.services {
    padding: 60px 0 120px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 24px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    display: flex;
    flex-direction: column;
}

.service-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    font-weight: 500;
    color: #111;
}

.star-icon {
    color: #FACC15; /* Yellow/Gold */
    font-size: 18px;
}

.service-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111;
}

.service-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    transition: background-color 0.2s, border-color 0.2s;
    font-size: 14px;
}

.service-link:hover {
    border-color: #111;
    background-color: #F9FAFB;
}

.service-desc {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* Why Choose Us Section */
.why-choose {
    padding: 80px 0 120px;
}

.why-choose-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-choose-image {
    width: 100%;
    border-radius: 40px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-choose-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.why-choose-content .description {
    margin-bottom: 32px;
    max-width: 100%;
}

.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.why-choose-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.125rem;
    color: var(--text-color);
}

.check-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

/* Features Blue Section */
.features-blue {
    background-color: var(--blue-section);
    padding: 100px 0;
    color: var(--white);
}

.features-blue .sub-headline {
    color: rgba(255, 255, 255, 0.8);
}

.features-blue .section-title {
    color: var(--white);
    margin-bottom: 60px;
}

.features-blue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-box {
    background-color: rgba(255, 255, 255, 0.1); /* Transparent white */
    padding: 40px 32px;
    border-radius: 24px;
    transition: background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-box:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.feature-box-icon {
    font-size: 32px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}

.feature-box-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.feature-box-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Process Section */
.process {
    padding: 100px 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.process-step.reverse .process-content {
    order: 1;
}

.process-step.reverse .process-image {
    order: 2;
}

.process-image {
    width: 100%;
    border-radius: 40px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.process-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 24px;
}

.step-title {
    font-size: 2rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 16px;
}

.step-desc {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0 120px;
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 24px;
    padding: 16px; /* Inner padding around image/content if desired, or padding inside content */
    padding-bottom: 32px;
    display: flex;
    flex-direction: column;
}

.comparison-container {
    width: 100%;
    height: 250px;
    display: flex;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
}

.comparison-image {
    flex: 1;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.comparison-image.before {
    background-position: left center;
    filter: brightness(0.9) sepia(0.2); /* Simulate "Before" look */
}

.comparison-image.after {
    background-position: right center;
    filter: brightness(1.05) saturate(1.1); /* Simulate "After" look */
}

.badge {
    position: absolute;
    top: 16px;
    padding: 6px 12px;
    background-color: var(--white);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.badge-left {
    left: 16px;
}

.badge-right {
    right: 16px;
}

.comparison-divider {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--white);
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-handle {
    width: 32px;
    height: 32px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    font-size: 16px;
}

.testimonial-content {
    padding: 0 16px;
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 32px;
    min-height: 80px; /* Force alignment if text length varies */
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-name {
    font-weight: 600;
    color: #111;
    font-size: 1.125rem;
}

/* Blogs Section */
.blogs {
    padding: 80px 0 120px;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.blog-card {
    display: flex;
    flex-direction: column;
}

.blog-image {
    width: 100%;
    aspect-ratio: 3/2;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 24px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: #111;
    margin-bottom: 24px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-item iconify-icon {
    font-size: 18px;
}

/* FAQ Section */
.faq {
    padding: 60px 0 120px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid #E5E7EB;
    padding: 24px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 24px;
}

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #111;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* Turn plus to x */
    background-color: var(--text-color); /* Optional: change color on active */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding-top 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust based on content length or use JS for dynamic height */
    padding-top: 16px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background-color: var(--bg-blue-light);
    padding: 100px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
}

.contact-headline {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 600;
    color: #000;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

.locations {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.location-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.location-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.location-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111;
}

.location-details p {
    color: var(--text-light);
    line-height: 1.6;
    max-width: 300px;
}

.contact-form-wrapper {
    background-color: var(--white);
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #111;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 14px 16px;
    padding-right: 40px; /* Space for icon */
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    outline: none;
    transition: border-color 0.2s;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    border-color: var(--primary-color);
}

.input-wrapper iconify-icon {
    position: absolute;
    right: 16px;
    color: #9CA3AF;
    pointer-events: none;
    font-size: 20px;
}

.textarea-wrapper textarea {
    min-height: 120px;
    resize: vertical;
    padding-right: 16px; /* No icon right padding needed usually, but we have one */
}

.textarea-wrapper .textarea-icon {
    top: 16px;
    right: 16px;
}

/* Footer Section */
.footer {
    background-color: var(--white);
    padding-top: 80px;
    padding-bottom: 40px;
}

.footer-top {
    margin-bottom: 60px;
}

.newsletter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #111;
    line-height: 1.2;
}

.newsletter-form {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.newsletter-input {
    width: 100%;
    padding: 16px 20px;
    padding-right: 140px; /* Space for button */
    background-color: var(--bg-blue-light);
    border: none;
    border-radius: 16px;
    font-size: 1rem;
    color: var(--text-color);
    outline: none;
}

.newsletter-btn {
    position: absolute;
    right: 8px;
    top: 8px;
    bottom: 8px;
    background-color: #111;
    color: var(--white);
    border: none;
    padding: 0 24px;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.newsletter-btn:hover {
    background-color: #333;
}

.newsletter-hint {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 12px;
}

.footer-divider {
    height: 1px;
    background-color: #E5E7EB;
    margin-bottom: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-desc {
    color: var(--text-light);
    margin: 24px 0 32px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.link-column h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 24px;
}

.link-column ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-column a {
    color: var(--text-light);
    transition: color 0.2s;
}

.link-column a:hover {
    color: var(--primary-color);
}

.social-links li a {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
    .headline {
        font-size: 3rem;
    }
    
    .hero-container {
        gap: 40px;
    }

    /* Services Tablet */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Why Choose Tablet */
    .why-choose-container {
        gap: 40px;
    }

    /* Features Blue Tablet */
    .features-blue-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Testimonials Tablet */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Blogs Tablet */
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contact Tablet */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-headline {
        font-size: 3rem;
        margin-bottom: 40px;
    }

    /* Footer Tablet */
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        gap: 40px;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .header-container {
        position: relative;
    }
    
    .nav-menu {
        display: none; /* Hide for mobile for now as simple request */
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .headline {
        font-size: 2.5rem;
    }

    .hero-image {
        order: -1; /* Image on top on mobile? Or keep bottom. Let's keep normal flow or maybe top */
        margin-top: 40px;
    }

    /* Intro Responsive */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .intro-video-wrapper {
        border-radius: 20px;
        aspect-ratio: 4 / 3;
    }

    /* Stats Responsive */
    .stats-container {
        grid-template-columns: repeat(2, 1fr); /* 2x2 grid on tablet/mobile */
        gap: 40px 20px;
    }

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

    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Why Choose Mobile */
    .why-choose-container {
        grid-template-columns: 1fr;
        text-align: left; /* Keep it left aligned as per design flow, or maybe center? Left is usually better for reading */
    }
    
    .why-choose-image {
        aspect-ratio: 16 / 9; /* Wider on mobile so it doesn't take too much height */
    }

    /* Features Blue Mobile */
    .features-blue-grid {
        grid-template-columns: 1fr;
    }

    /* Process Mobile */
    .process-step {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .process-step.reverse .process-content {
        order: 2; /* Put content below image on mobile for consistency */
    }
    
    .process-step.reverse .process-image {
        order: 1; /* Put image above content */
    }
    
    .process-content {
        order: 2;
    }
    
    .process-image {
        order: 1; /* Ensure images are always on top on mobile */
    }

    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Blogs Mobile */
    .blogs-grid {
        grid-template-columns: 1fr;
    }

    /* Contact Mobile */
    .contact-headline {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }

    /* Footer Mobile */
    .newsletter-wrapper {
        flex-direction: column;
        gap: 32px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        width: 100%;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr; /* Stack vertically on very small screens */
    }
}
