/* Import Inter font to match the clean design */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

body {
    font-family: 'Inter';
    background-color: #ffffff;
    color: #333;
    -webkit-font-smoothing: antialiased;
}

/* ----------------------------------
       Layout Wrapper & Split Background
       ---------------------------------- */
.hero-wrapper {
    position: relative;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 60px;
}

/* Light mint background layer that stops halfway down the image */
.bg-mint-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 65%;
    /* Adjusts where the background split happens */
    background-color: #ebf5ef;
    /* Soft mint green */
    z-index: 0;
}

.container {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
    /* Keeps content above the background layer */
}

/* ----------------------------------
       Text Content Section
       ---------------------------------- */
.text-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 30px auto;
}

.text-content h1 {
    font-family: "Rethink Sans";
    font-size: 60px;
    font-weight: 800;
    color: #1e3238;
    /* Dark slate */
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.highlight-text {
    color: #0e7d60;
    /* Teal/Green accent */
}

.text-content p {
    font-family: "DM Sans";
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #16222D;
    /* Gray text */
    margin: 0 auto 10px auto;
    max-width: 1000px;
}

.btn-primary {
    display: inline-block;
    background-color: #0e7d60;
    /* Teal button */
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 30px;
    /* Pill shape */
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.2s ease;
}

.btn-primary:hover {
    background-color: #0b634c;
    /* Darker teal on hover */
}

/* ----------------------------------
       Image & Overlay Section
       ---------------------------------- */
.image-container {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    /* Keeps the image and gradient cleanly inside rounded corners */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 100px 50px 40px 50px;
    /* Large top padding to create a smooth gradient fade */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.overlay-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #e5e7eb;
    /* Light gray */
    margin-bottom: 8px;
}

.overlay-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
}

/* ----------------------------------
       Responsive Adjustments
       ---------------------------------- */
@media (max-width: 900px) {
    .text-content h1 {
        font-size: 38px;
    }

    .image-overlay {
        padding: 80px 30px 30px 30px;
    }

    .overlay-title {
        font-size: 32px;
    }

    .overlay-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .hero-wrapper {
        padding-top: 50px;
    }

    .text-content h1 {
        font-size: 32px;
    }

    .text-content p {
        font-size: 14px;
        padding: 0 10px;
    }

    .image-overlay {
        padding: 60px 20px 20px 20px;
    }

    .overlay-title {
        font-size: 24px;
    }

    .overlay-subtitle {
        font-size: 14px;
    }
}

/* --- Info Section Styles (test2.html) --- */

/* Import Inter font to match the clean design system */



/* ----------------------------------
       Layout Container
       ---------------------------------- */
.info-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
    /* Vertically centers text with the image */
}

/* ----------------------------------
       Left Column (Text Content)
       ---------------------------------- */
.content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.content-left h2 {
    font-family: "Rethink Sans";
    font-size: 40px;
    font-weight: 700;
    color: #1f1f1f;
    /* Dark slate */
    line-height: 1.2;
    margin-bottom: 20px;
}

.content-left p.description {
    font-family: "DM Sans";
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #525252;
    /* Gray text */
    margin-bottom: 40px;
}

/* ----------------------------------
       Numbered List Styles
       ---------------------------------- */
.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    /* Space between list items */
    margin-bottom: 40px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    /* Space between number pill and text */
}

.list-number {
    background-color: #eaf5f0;
    /* Soft mint background */
    color: #0e7d60;
    /* Dark teal text */
    font-size: 15px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    /* Pill shape */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.list-text {
    font-family: "DM Sans";
    font-size: 20px;
    font-weight: 600;
    color: #31413E;
    /* Dark gray */
}

/* ----------------------------------
       Button Styles
       ---------------------------------- */
.btn-primary {
    align-self: flex-start;
    /* Prevents button from stretching to full width */
    background-color: #0e7d60;
    /* Teal button */
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 30px;
    /* Pill shape */
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.2s ease;
}

.btn-primary:hover {
    background-color: #0b634c;
    /* Darker teal on hover */
}

/* ----------------------------------
       Right Column (Image)
       ---------------------------------- */
.content-right {
    flex: 1.1;
    /* Takes slightly more width than the text column */
}

.reception-img {
    width: 90%;
    height: auto;
    display: block;
    border-radius: 30px;
    /* Rounded corners matching the design */
    object-fit: cover;
}

/* ----------------------------------
       Responsive Adjustments
       ---------------------------------- */
@media (max-width: 960px) {
    .info-container {
        flex-direction: column;
        gap: 40px;
    }

    .content-right {
        order: -1;
        /* Puts the image on top for mobile screens */
        width: 100%;
    }

    .content-left h2 {
        font-size: 32px;
    }
}

@media (max-width: 600px) {

    .content-left h2 {
        font-size: 28px;
    }

    .feature-list {
        gap: 20px;
    }

    .list-text {
        font-size: 15px;
    }

    .list-number {
        padding: 6px 14px;
        font-size: 14px;
    }
}

.info-container {
    padding: 100px 20px;
}

/* --- Why & Who Sections Styles (test.html) --- */

/* Import Inter font to match the design */



/* =========================================
       Section 1: Why Visit (Split Background)
       ========================================= */
.why-visit-section {
    display: flex;
    width: 100%;
}

/* Left Side */
.why-left {
    flex: 1;
    background-color: #0C6653;
    /* Lighter forest green */
    padding: 80px 40px 80px 10%;
    /* More padding on the outer left edge */
    display: flex;
    justify-content: flex-end;
    /* Pushes content towards the center split */
}

.why-left-content {
    max-width: 500px;
    width: 100%;
    display: flex;
    align-items: center;
}

.why-left h2 {
    font-family: "Rethink Sans";
    font-size: 48px;
    font-weight: 700;
    color: #FCFCFC;
    line-height: 1.3;
    margin: 0;
}

/* Right Side */
.why-right {
    flex: 1;
    background-color: #094A3C;
    /* Darker forest green */
    padding: 80px 10% 80px 40px;
    /* More padding on the outer right edge */
    display: flex;
    justify-content: flex-start;
    /* Pushes content towards the center split */
}

.why-right-content {
    max-width: 500px;
    width: 100%;
    display: flex;
    align-items: center;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    /* Space between items */
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fcfcfc;
    font-family: "Rethink Sans";
    font-size: 20px;
    font-weight: 400;
}

/* Custom Checkmark Icon */
.check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* =========================================
       Section 2: Who Should Visit (Grid)
       ========================================= */
.who-visit-section {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

.who-visit-section h2 {
    font-family: "Rethink Sans";
    font-size: 48px;
    font-weight: 700;
    color: #0F172A;
    /* Dark navy/slate */
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

.visitor-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.visitor-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.visitor-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Forces a perfect square */
    overflow: hidden;
}

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

.visitor-card p {
    font-family: "Rethink Sans";
    font-size: 22px;
    font-weight: 600;
    color: #0F172A;
    margin: 0;
}

/* =========================================
       Responsive Adjustments
       ========================================= */
@media (max-width: 960px) {
    .why-visit-section {
        flex-direction: column;
    }

    .why-left,
    .why-right {
        padding: 60px 20px;
        justify-content: center;
    }

    .why-left-content,
    .why-right-content {
        max-width: 600px;
        text-align: left;
    }

    .visitor-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on tablet */
        gap: 30px 20px;
    }
}

@media (max-width: 600px) {
    .why-left h2 {
        font-size: 32px;
    }

    .benefits-list li {
        font-size: 15px;
    }

    .who-visit-section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .visitor-grid {
        grid-template-columns: 1fr;
        /* 1 column on mobile */
    }
}



/* --- How Visit Works & Experience Sections (test2.html) --- */

.test2-visit-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
       Section: How the Visit Works
       ========================================= */
.visit-works-section {
    padding: 80px 0 100px 0;
    text-align: center;
}

.visit-works-section h2 {
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    /* Dark navy from screenshot */
    margin-bottom: 70px;
    letter-spacing: -1px;
}

.steps-banner {
    background: linear-gradient(90deg, #0B5546 0%, #0F9A7D 100%);
    /* Deep forest green from screenshot */
    border-radius: 0;
    display: flex;
    position: relative;
    width: 100vw;
    /* Makes it full screen width */
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    /* Centering hack for full-width children of narrow containers */
    box-sizing: border-box;
}

.empty-block {
    flex: 1;
    /* Takes up remaining space on the left and right */
}

.step-block {
    flex: 1;
    position: relative;
    padding: 60px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 250px;
}

.step-block:last-child {
    border-right: none;
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Perfectly centered on the top edge */
    width: 42px;
    height: 42px;
    background-color: #22c55e;
    /* Vibrant green from screenshot */
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.step-block p {
    font-family: "Rethink Sans";
    color: #ffffff;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

/* =========================================
       Section: What You Can Experience
       ========================================= */
.experience-section {
    padding: 20px 0;
}

.experience-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px auto;
}

.experience-header h2 {
    font-family: "Rethink Sans";
    font-size: 48px;
    font-weight: 800;
    color: #393737;
    margin-bottom: 16px;
}

.experience-header p {
    font-family: "DM Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #333333;
}

/* Cards Layout */
.cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.exp-card {
    border: 1px solid #FFE0CC;
    background-color: #ffffff;
    border-radius: 40px;
    /* Large rounded corners from screenshot */
    display: flex;
    overflow: hidden;
    /* Ensures image is clipped by rounded corners */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    max-width: 1200px;
}

/* Card Text Side */
.card-content {
    flex: 1;
    width: 50%;
    padding: 60px;
    /* Spacious padding for clean look */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
}

.card-content h3 {
    font-family: "Rethink Sans";
    font-size: 32px;
    /* Matching screenshot size */
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.card-content>p {
    font-family: "Rethink Sans";
    font-size: 16px;
    color: #222221;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Custom Checklist */
.check-list li {
    position: relative;
    padding-left: 48px;
    margin-bottom: 20px;
    font-family: "Rethink Sans";
    font-size: 18px;
    /* Larger, clearer list text */
    font-weight: 500;
    color: #000000;
    display: flex;
    align-items: center;
    min-height: 32px;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    /* Soft mint circle from screenshot */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e7d60' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.card-footer-text {
    font-size: 16px !important;
    font-style: normal !important;
    color: #111827 !important;
    font-weight: 500;
    margin-top: auto !important;
}

/* Card Image Side */
.card-image {
    flex: 1;
    width: 50%;
    overflow: hidden;
    display: flex;
    box-sizing: border-box;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Adjustments */
@media (max-width: 960px) {
    .exp-card {
        flex-direction: column;
    }

    .card-content {
        padding: 40px;
    }

    .card-image {
        order: -1;
        /* Image on top for mobile */
        height: 300px;
    }
}

@media (max-width: 600px) {

    .experience-header h2 {
        font-size: 32px;
    }

    .card-content h3 {
        font-size: 26px;
    }
}


/* --- Vision & CTA Sections (test.html) --- */
/* =========================================
       Section 1: CTA Banner (Green Gradient)
       ========================================= */
.cta-banner {
    /* Gradient matching the dark-to-light green in the screenshot */
    background: linear-gradient(90deg, #0B5546 0%, #0F9A7D 100%);
    padding: 100px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.cta-content h2 {
    font-family: "Rethink Sans";
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
}

.cta-content p {
    font-family: "Rethink Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
    /* Light grayish-white */
    max-width: 600px;
    margin: 0;
}

.btn-white {
    background-color: #ffffff;
    color: #1a5636;
    /* Dark green text */
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 14px 32px;
    border-radius: 30px;
    /* Pill shape */
    text-transform: uppercase;
    margin-top: 10px;
    transition: background-color 0.2s, transform 0.1s;
}

.btn-white:hover {
    background-color: #f3f4f6;
    transform: translateY(-2px);
}

/* =========================================
       Section 2: Our Vision (4-Column Grid)
       ========================================= */
.vision-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.vision-container {
    max-width: 1300px;
    margin: 0 auto;
}

.vision-header {
    max-width: 1250px;
    margin: 0 auto 10px auto;
}

.vision-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    letter-spacing: -1px;
}

.vision-header p {
    font-size: 18px;
    line-height: 1.6;
    color: #4b5563;
}

/* Grid Layout */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
}

/* Individual Card styling */
.vision-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    border-radius: 24px;
    background: transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.icon-circle {
    width: 48px;
    height: 48px;
    background: linear-gradient(303.93deg, #44C26F 15.13%, #1CB394 84.24%);

    /* Soft mint background */
    border-radius: 50%;
    /* Squircle style */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background-color 0.3s ease;
}

.vision-card:hover .icon-circle {
    background-color: #dcfce7;
}

.icon-circle svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
    /* Primary green */
}

.vision-card h3 {
    font-family: "Rethink Sans";
    font-size: 23px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 16px;
    line-height: 1.4;
}

.vision-card p {
    font-family: "Rethink Sans";
    font-size: 15px;
    line-height: 1.7;
    color: #484848;
    ;
}

/* =========================================
       Responsive Adjustments
       ========================================= */
/* =========================================
       Section 5: Book a Visit Modal
       ========================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    background-color: #ffffff;
    width: 90%;
    max-width: 1100px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #f3f4f6;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    color: #6b7280;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, color 0.2s;
}

.modal-close:hover {
    background-color: #e5e7eb;
    color: #111827;
}

.modal-content {
    display: flex;
    min-height: 550px;
}

/* Modal Left (Form Area) */
.modal-left {
    flex: 1.2;
    padding: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-left h2 {
    font-size: 40px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 45px;
    letter-spacing: -1px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group input {
    width: 100%;
    padding: 18px 24px;
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    font-size: 16px;
    color: #111827;
    background-color: #ffffff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input::placeholder {
    color: #9ca3af;
}

.form-group input:focus {
    outline: none;
    border-color: #0e7d60;
    box-shadow: 0 0 0 4px rgba(14, 125, 96, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background-color: #0e7d60;
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    margin-top: 15px;
    box-shadow: 0 10px 20px rgba(14, 125, 96, 0.2);
}

.btn-submit:hover {
    background-color: #0c6a52;
}

.btn-submit:active {
    transform: scale(0.98);
}

/* Modal Right (Info Panel) */
.modal-right {
    flex: 1;
    background-color: #f0fdf6;
    padding: 50px;
    display: flex;
    align-items: center;
}

.info-box {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.modal-right .info-box {
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

.info-header h3 {
    font-size: 26px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 24px;
}

.info-body .business-name {
    font-size: 18px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 12px;
}

.info-body .address {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 24px;
}

.map-link {
    display: inline-block;
    color: #0e7d60;
    font-weight: 800;
    text-decoration: underline;
    margin-bottom: 40px;
    transition: opacity 0.2s;
}

.map-link:hover {
    opacity: 0.8;
}

.contact-footer {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

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

.contact-item .label {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 6px;
    font-weight: 500;
}

.contact-item .valueHighlight {
    font-size: 18px;
    font-weight: 800;
    color: #0e7d60;
}

.contact-item .valueHighlight.email {
    color: #10b981;
}

/* Modal Responsive Settings */
@media (max-width: 900px) {
    .modal-content {
        flex-direction: column;
    }

    .modal-left,
    .modal-right {
        padding: 40px;
    }

    .modal-left h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .modal-container {
        max-height: 90vh;
        overflow-y: auto;
        border-radius: 20px;
    }
}

@media (max-width: 600px) {
    .cta-banner {
        padding: 70px 20px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .vision-header h2 {
        font-size: 26px;
    }

    .vision-grid {
        grid-template-columns: 1fr;
        /* 1 column on mobile */
        gap: 40px;
    }
}


/* Wrapper for test2 sections to give full-width mint background */
.test2-full-bg {
    background-color: #f0f9f4;
    width: 100%;
    padding-bottom: 80px;
}