:root {
    --primary-green: #A8D5BA;
    /* Soft pastel green */
    --primary-orange: #FFDCA8;
    /* Warm pastel orange */
    --accent-green: #4E8B69;
    --accent-orange: #E89B6E;
    --bg-cream: #FAF9F6;
    --text-dark: #2C3E50;
    --text-light: #5D6D7E;
    --white: #FFFFFF;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    --shadow-soft: 0 10px 30px rgba(168, 213, 186, 0.2);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.05);

    --radius-lg: 30px;
    --radius-xl: 50px;
    --radius-organic: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.small-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text-dark);
}

.serif-accent {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--accent-green);
    font-weight: 400;
}

.section-heading {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-green), var(--primary-orange));
    border-radius: 2px;
}

.centered {
    text-align: center;
}

.section-heading.centered {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.centered.section-heading::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Background Blobs */
.organic-shape {
    position: fixed;
    z-index: -1;
    filter: blur(80px);
    opacity: 0.6;
}

.shape-1 {
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--primary-green);
    border-radius: var(--radius-organic);
    animation: float 20s infinite ease-in-out;
}

.shape-2 {
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--primary-orange);
    border-radius: var(--radius-organic);
    animation: float 25s infinite ease-in-out reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(30px, 50px) rotate(10deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* Navbar removed */

.logo-hero {
    display: block;
    margin-bottom: 2rem;
    max-width: 200px;
    /* Adjust width as needed */
}

.logo-hero img {
    width: 100%;
    height: auto;
    display: block;
}

.logo {
    font-family: var(--font-body);
    font-size: 3rem;
    /* Increased size */
    font-weight: 700;
    color: var(--accent-green);
    text-decoration: none;
    letter-spacing: -1.5px;
}

/* Buttons */
.cta-button {
    background: var(--accent-orange);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(232, 155, 110, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 155, 110, 0.6);
}

.full-width {
    width: 100%;
}

/* Phone Banner */
.phone-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    margin-top: -2rem;
    margin-bottom: 3rem;
    z-index: 10;
    position: relative;
    max-width: 620px;
    /* Wider to fit WA button */
}

.phone-icon {
    width: 32px;
    height: 32px;
    color: var(--accent-green);
}

.phone-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-body);
}

/* WhatsApp button inline in phone banner */
.whatsapp-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #FFF;
    text-decoration: none;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-body);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    margin-left: 0.5rem;
}

.whatsapp-banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
}

/* Hero Section (Split Layout) */
.hero {
    padding-top: 4rem;
    padding-bottom: 4rem;
    text-align: left;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text-content {
    max-width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.location-badge {
    display: inline-block;
    background-color: #D1E8E2;
    /* Very light green variation for badge so text is readable */
    color: var(--accent-green);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(78, 139, 105, 0.15);
    border: 1px solid rgba(78, 139, 105, 0.2);
}

.hero-media-container {
    width: 100%;
    height: 500px;
    border-radius: var(--radius-xl);
    border-radius: 40px 10px 40px 40px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-soft);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Location Badge Refined */
.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent-green);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: transparent;
    border: none;
    padding: 0;
}

.location-badge::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234E8B69'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(232, 155, 110, 0.5);
    z-index: 1000;
    font-size: 1rem;
    line-height: 1.3;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.floating-cta:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 10px 25px rgba(232, 155, 110, 0.7);
}

/* Value Prop (Full Background) */
/* Value Prop (Full Background) */
.value-prop-bg {
    background: url('assets/espacios.jpg') center/cover no-repeat fixed;
    /* Parallax effect */
    position: relative;
    border-radius: 0;
    margin: 4rem 0;
    /* Vertical margin only */
    width: 100%;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: none;
}

.value-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay */
    z-index: 1;
}

.relative-z {
    position: relative;
    z-index: 2;
}

.text-white {
    color: #FFFFFF !important;
}

.highlight-white {
    color: #FFDCA8;
    font-weight: 600;
}

.value-prop-bg .section-title {
    font-size: 2.5rem;
    line-height: 1.4;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-padding {
    padding: 5rem 0;
}

/* Gallery (Cards Grid) */
.gallery-grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

@media (min-width: 900px) {
    .featured-video-card {
        grid-column: span 2;
    }
}

/* Space Card - 'Our Stories' Style */
.space-card {
    background: var(--white);
    border-radius: 8px;
    /* Sharper, more premium look */
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 400px;
    /* Taller editorial look */
}

.space-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.featured-video-card {
    grid-column: span 2;
}

.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.8);
    pointer-events: none;
    transition: transform 0.3s ease, background 0.3s;
}

.space-card:hover .custom-play-icon {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(78, 139, 105, 0.8);
    /* Green on hover */
}

.card-image {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

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

.space-card:hover .card-image img {
    transform: scale(1.08);
    /* Subtle zoom */
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
    color: var(--white);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 500;
    letter-spacing: -0.5px;
}

/* Add a pseudo-element for 'Read More' line */
.card-content::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--primary-orange);
    margin-top: 0.5rem;
    transition: width 0.3s ease;
}

.space-card:hover .card-content::after {
    width: 80px;
}

/* Remove old card-content styles implicitly by overwriting */


/* Contact */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
    /* Force equal height for children */
}

/* Contact Text Wrapper to match height */
.contact-text {
    height: 100%;
    display: flex;
}

.contact-free-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: 0;
    border-radius: 30px;
    /* Match form border radius */
    box-shadow: var(--shadow-soft);
    display: block;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #EEE;
    border-radius: 15px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-green);
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    /* Standard YouTube Landscape */
    background: #000;
    border-radius: 20px;
    margin-bottom: 1rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.video-facade {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.play-button {
    display: none;
    /* Removed as YouTube has its own */
}

/* 
.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.video-facade:hover .play-button {
    transform: scale(1.1);
    background: var(--accent-green);
}
*/


.testimonial-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    /* Add spacing */
}

.testimonial-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
    padding: 0 1rem;
}

/* FAQ */
.accordion-item {
    border-bottom: 1px solid #EEE;
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-green);
    transition: transform 0.3s;
}

.accordion-header.active::after {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--text-light);
}

.accordion-content p {
    padding-bottom: 1.5rem;
}

/* Footer */
.footer {
    background: var(--accent-green);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
    margin-top: 4rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.checkbox-group input {
    width: 20px;
    height: 20px;
    accent-color: var(--accent-green);
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
    cursor: pointer;
    flex: 1;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text-content {
        margin: 0 auto 2rem;
    }

    .logo-hero {
        margin-left: auto;
        margin-right: auto;
    }

    .section-heading {
        font-size: 1.75rem;
        /* Reduced from 2rem */
    }

    .hero-title {
        font-size: 2rem;
        /* Reduced from 2.5rem */
    }

    .value-prop-bg .section-title {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Hide Popup on Mobile */
    .popup-overlay {
        display: none !important;
    }

    /* Floating CTA Full Width */
    .floating-cta {
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 0;
        padding: 1.2rem;
        font-size: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        z-index: 9999;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

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

    .gallery-grid-cards {
        grid-template-columns: 1fr;
    }

    .featured-video-card {
        grid-column: span 1;
        /* Reset span for mobile */
    }

    .custom-play-icon {
        display: none;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Select Styling */
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #EEE;
    border-radius: 15px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: white;
    appearance: none;
    /* Custom arrow */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234E8B69' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
}


/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
    backdrop-filter: blur(5px);
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--white);
    width: 90%;
    max-width: 900px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.popup-overlay.show .popup-content {
    transform: translateY(0);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    z-index: 10;
    line-height: 1;
}

.popup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-height: 85vh;
    /* Prevent overflow on small screens */
    overflow-y: auto;
}

.popup-image-col {
    position: relative;
    min-height: 200px;
}

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

.popup-form-col {
    padding: 3rem 2rem;
    overflow-y: auto;
}

@media (max-width: 768px) {
    .popup-grid {
        grid-template-columns: 1fr;
    }

    .popup-image-col {
        display: none;
    }

    .popup-form-col {
        padding: 2rem 1.5rem;
    }
}

/* Thank You Page Styles */
.thank-you-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.thank-you-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    border: 1px solid rgba(168, 213, 186, 0.3);
}

.check-icon {
    width: 80px;
    height: 80px;
    background: #D1E8E2;
    color: var(--accent-green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2rem;
}

.check-icon svg {
    width: 40px;
    height: 40px;
}

.divider {
    height: 1px;
    background: #EEE;
    margin: 2rem auto;
    width: 80%;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background-color: #25D366;
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 1.1rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-button svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}


/* Inclusions Section */
.inclusions-section {
    background-color: #fefefe;
    overflow: hidden;
}

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

.inclusion-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(168, 213, 186, 0.15);
    transition: all 0.3s ease;
}

.inclusion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(168, 213, 186, 0.15);
}

.inclusion-card h3 {
    color: var(--accent-green);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 600;
}

.inclusion-list {
    list-style: none;
    padding: 0;
}

.inclusion-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.4;
    color: var(--text-light);
}

.inclusion-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 900;
    font-size: 1.2rem;
}

.plan-summary-cta {
    margin-top: 5rem;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--bg-cream) 0%, #f0f7f4 100%);
    border-radius: 40px;
    text-align: center;
    border: 1px solid rgba(168, 213, 186, 0.3);
}

.plan-summary-cta h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.plan-summary-cta .price-highlight {
    font-size: 3rem;
    color: var(--accent-green);
    font-weight: 800;
    display: block;
    margin: 1rem 0;
}

.plan-summary-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .inclusions-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive for Thank You Page */
@media (max-width: 600px) {
    .thank-you-card {
        padding: 2rem 1.5rem;
    }

    .hero-title {
        font-size: 2rem !important;
    }

    .whatsapp-button {
        width: 100%;
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}