@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&display=swap');


:root {
    --Blackest: #000000;
    --Head-Lights: #CBFF2E;
    --White: #FFFFFF;
    --Light-Gray: #F8F8F8;
    --Gray: #E0E0E0;
    --Dark-Gray: #A0A0A0;
    --color-feeling-blue-100: #1900B6;
    --border-color: #8C8C8C;
    --page-wrapper-padding: 32px;
    --pink-accent: #ff20f7;
    --color-burgundy-sky-100: #520027;
    --color-burgundy-sky-80: #743351;
}



body {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.78px;
    margin: 0;
    justify-content: center;
    align-items: center;
}

h1 {
    font-weight: 600;
}

p {
    font-weight: 400;
    font-size: 18px;
}

.component-wrapper {
    margin-bottom: 84px;
}

.page-title {
    margin-bottom: 48px;
    width: 100%;
    text-align: center;
    font-size: 64px;
}

.centered-header {
    padding-top: 64px;
    margin-bottom: 64px;
    width: 100%;
    text-align: center;
    font-size: 64px;
}


.page-wrapper {
    padding: var(--page-wrapper-padding);
    max-width: 1460px;
    margin: 0 auto;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    padding-left: 0px;
    position: relative;
    /* Add any other styles for your overall header container */
}

#scrollToTopBtn {
    display: none;
    /* Initially hide the button */
    position: fixed;
    /* Keep the button in a fixed position */
    bottom: 20px;
    /* Adjust the distance from the bottom */
    right: 20px;
    /* Adjust the distance from the right */
    z-index: 99;
    /* Ensure it's on top of other elements */
    border: none;
    outline: none;
    /* Customize the background color */
    /* Customize the text color */
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
    font-size: 18px;
    /* Add a smooth transition for a better user experience */
    transition: opacity 0.3s ease-in-out;
    background-color: white;
}

/*  when on phone then set header margin bottom to 20px */
@media (max-width: 767px) {
    #scrollToTopBtn {
        display: none !important;
    }

    .header {
        margin-bottom: 20px !important;
    }

    .button-primary {
        width: 100%;
        text-align: center;
    }

    .component-wrapper {
        margin-bottom: 72px;
    }
}

.header-logo img {
    height: 50px;
    /* Adjust as needed */
}

.header-content {
    display: none;
    /* Hide menu by default */
    position: absolute;
    top: 100%;
    /* Position below the header */
    left: 0;
    width: 100%;
    background-color: #fff;
    /* Match your header background */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header-content.is-open {
    display: block;
    /* Show menu when open */
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-item {
    text-align: center;
    border-bottom: 1px solid #eee;
    width: 100%;
    /* Optional separator */
}

.nav-link {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    /* Default link color */
    font-size: 1.2rem;
}

/* Active link styles (same as before) */
.active-link {
    color: #FF00ED;
    position: relative;
}

.active-link-highlight {
    background-color: #FF00ED !important;
    color: #FFFFFF;
    border-color: #FF00ED !important;
}

.active-link-highlight:hover {
    background-color: #FF00ED !important;
    color: #FFFFFF !important;
    border-color: #FF00ED !important;
}

.active-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    /* Adjust this value to control the distance from the text */
    left: 50%;
    transform: translateX(-50%);
    width: calc(100%);
    /* Adjust width to not be full width */
    height: 3px;
    background-color: #FF00ED;
}

/* Hamburger icon styles */
.menu-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    /* Adjust size of the clickable area */
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

/* Hide the toggle button on desktop */
@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

/* Desktop Styles */
@media (min-width: 768px) {
    .header {
        justify-content: space-between;
    }

    .header-content {
        display: block;
        /* Show menu on desktop */
        position: static;
        background: transparent;
        box-shadow: none;
        width: auto;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 56px;
        /* Space between links */
    }

    .nav-item {
        border-bottom: none;
        width: auto;
    }

    .nav-link {
        padding: 0;
        font-size: 26px;
    }
}

/* The lines of the hamburger */
.hamburger-icon {
    position: relative;
    width: 25px;
    /* Width of the icon */
    height: 3px;
    /* Height of the middle line */
    background-color: #333;
    transition: all 0.3s ease-in-out;
}

.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease-in-out;
}

/* Position the top and bottom lines precisely */
.hamburger-icon::before {
    transform: translateY(-8px);
    top: 0;
    left: 0;
}

.hamburger-icon::after {
    transform: translateY(8px);
    top: 0;
    left: 0;
}


/* Transformation into an 'X' */
.menu-toggle[aria-expanded="true"] .hamburger-icon {
    background-color: transparent;
    /* This makes the middle line disappear */
}

.menu-toggle[aria-expanded="true"] .hamburger-icon::before {
    transform: translateY(0) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .hamburger-icon::after {
    transform: translateY(0) rotate(-45deg);
}

.button-highlight {
    border-radius: 4px;
    border: 2px solid var(--Head-Lights, #CBFF2E);
    background: var(--Head-Lights, #CBFF2E);
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 14px;
    padding-right: 14px;
}

/* nav item hover effect pink with a smooth transition */
.nav-link:hover {
    color: #FF00ED;
    transition: color 0.3s ease;
}

/* when hover header-logo image scale up a bit with a smooth transition */
.header-logo img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}



.hero-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 64px;
    flex: 1 0 0;
}

.hero-header {
    color: var(--Blackest, #000);

    /* Headline frontpage */
    font-size: 84px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    /* 92.4px */
    letter-spacing: -3.78px;
}

/* --- Desktop Styles (Default) --- */
.two-col-content {
    /* Adjust padding as needed for spacing from other components */
    padding-right: 2rem;
    padding-left: 2rem;
}

.two-col-container {
    display: flex;
    flex-direction: row;
    /* Side-by-side on desktop */
    align-items: center;
    /* Vertically align the content of the columns */
    gap: 64px;
    /* Modern way to handle the space, replaces margin-right */
}

.two-col-left {
    /* Adjust flex properties if you want columns of different widths */
    /* e.g., flex: 1; for the left and flex: 2; for the right */
    flex: 1;
    margin-right: -30%;
}

.two-col-right {
    flex: 1;
}

.content-heading {
    font-size: 64px;
    margin-bottom: 48px;
}

.content-text {
    /* The problematic margin-right: 200px is now gone! */
    margin-bottom: 32px;
    /* Space between text and the image below it */
}

.content-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    /* Removes any extra space that can appear under an image */
}

/* --- Mobile Styles --- */
/* This block applies only when the screen width is 768px or less */
@media (max-width: 768px) {

    .two-col-container {
        /* Stack the columns vertically */
        flex-direction: column;
        gap: 24px;
    }

    .content-heading {
        /* Reduce heading size for better readability on small screens */
        font-size: 48px;
        margin-bottom: 24px;
        margin-top: 0px;
        /* Add some space above the heading when it follows the first image */
    }

    .two-col-content {
        padding: 0;
    }

    .two-col-left {
        margin-right: 0px;
    }

    .testimonial-component {
        padding: 0 !important;
    }

    .footer {
        display: none;
    }

    .CTA1 {
        display: none;
    }
}


/* Our Work Section Container */
.our-work-section {
    width: 100%;
    max-width: 1200px;
    /* Limit overall width */
    padding: 40px 20px;
    text-align: center;
    /* For the main heading */
    box-sizing: border-box;
    position: relative;
    /* For the background pattern */
    overflow: hidden;
    /* Ensure background pattern doesn't bleed */
}

/* Background pattern (simplified for CSS) */
.our-work-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="2" fill="%23e0e0e0"/><circle cx="50" cy="10" r="2" fill="%23e0e0e0"/><circle cx="90" cy="10" r="2" fill="%23e0e0e0"/><circle cx="10" cy="50" r="2" fill="%23e0e0e0"/><circle cx="50" cy="50" r="2" fill="%23e0e0e0"/><circle cx="90" cy="50" r="2" fill="%23e0e0e0"/><circle cx="10" cy="90" r="2" fill="%23e0e0e0"/><circle cx="50" cy="90" r="2" fill="%23e0e0e0"/><circle cx="90" cy="90" r="2" fill="%23e0e0e0"/></svg>');
    background-repeat: repeat;
    opacity: 0.5;
    z-index: -1;
    transform: rotate(45deg);
    /* To match the diagonal pattern */
}


/* Main Heading */
.our-work-heading {
    font-size: 3em;
    font-weight: bold;
    color: #333;
    margin-bottom: 50px;
    letter-spacing: -0.02em;
    /* Slight tightening of letters */
}

/* Cards Container */
.cards-container {
    display: flex;
    justify-content: center;
    /* Center the cards if there's extra space */
    flex-wrap: wrap;
    /* Allow cards to wrap on smaller screens */
    gap: 30px;
    /* Space between cards */
    margin-bottom: 40px;
    /* Space above navigation */
}

/* Individual Card */
.card {
    background-color: #fff;
    border-radius: 12px;
    /* Subtle shadow */
    overflow: hidden;
    /* Ensures image corners are rounded */
    width: calc(33.333% - 20px);
    /* Roughly 1/3 width, accounting for gap */
    min-width: 280px;
    /* Minimum width before wrapping */
    max-width: 380px;
    /* Max width to prevent cards from getting too large */
    display: flex;
    flex-direction: column;
    /* Stack image and content vertically */
    box-sizing: border-box;
    transition: transform 0.2s ease-in-out;
}

.card-hover-effect {
    transition: transform 0.2s ease-in-out;
}

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

.card-image {
    width: 100%;
    border-radius: 16px;
    max-height: 480px;
    /* Fixed height for images to ensure consistency */
    object-fit: cover;
    /* Covers the area, cropping if necessary */
    display: block;
    /* Remove extra space below image */
}

.card-content {
    margin-top: 12px;
    text-align: left;
    /* Align text within card */
}

.card-title {
    font-size: 28px;
    font-weight: 600;
    /* Slightly bolder */
    color: #333;
    margin-top: 0;
    margin-bottom: 10px;
}

.card-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Navigation Arrows */
.card-navigation {
    display: flex;
    justify-content: flex-end;
    /* Align arrows to the right */
    align-items: center;
    padding-right: 120px;
    /* Align with card edge if needed */
}

.nav-arrow {
    font-size: 1.8em;
    color: #ccc;
    /* Light grey for inactive arrow */
    cursor: pointer;
    margin-left: 20px;
    user-select: none;
    /* Prevent text selection */
    transition: color 0.2s ease-in-out;
}

.nav-arrow:hover {
    color: #a0a0a0;
    /* Darker on hover */
}

.nav-arrow.right-arrow {
    background-color: #f0f0f0;
    /* Light background for the right arrow */
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #999;
    /* Slightly darker grey for the active arrow */
    font-size: 1.5em;
    /* Adjust size within circle */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    /* Subtle shadow for the circle */
}

.nav-arrow.right-arrow:hover {
    background-color: #e5e5e5;
    color: #666;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .card {
        width: calc(50% - 20px);
        /* 2 cards per row on medium screens */
    }
}

@media (max-width: 600px) {
    .our-work-heading {
        font-size: 2.5em;
    }

    .card {
        width: 90%;
        /* 1 card per row on small screens */
        min-width: unset;
        /* Remove min-width constraint */
        margin: 0 auto;
        /* Center single card */
    }

    .cards-container {
        flex-direction: column;
        /* Stack cards vertically */
        align-items: center;
        /* Center them when stacked */
    }

    .card-navigation {
        justify-content: center;
        /* Center arrows on small screens */
    }
}

.testimonial-component {
    background-color: #FFFFFF;
    max-width: 750px;
    /* White background as seen in the image */
    padding: 60px;
    margin: 0 auto;
    /* To center it within its parent */
    */
}

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

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


.testimonial-header {
    display: flex;
    align-items: center;
    /* Vertically align avatar and text */
    margin-bottom: 30px;
    /* Space between header and quote */
}

.testimonial-avatar {
    width: 60px;
    /* Adjust avatar size */
    height: 60px;
    border-radius: 50%;
    /* Make it perfectly round */
    object-fit: cover;
    /* Ensures image covers the area without distortion */
    margin-right: 20px;
    /* Space between avatar and text */
}

.testimonial-info {
    /* Flex item, takes up remaining space if needed */
}

.testimonial-name {
    font-size: 28px;
    /* Adjust font size */
    font-weight: 600;
    /* Bolder for the name */
    color: #333333;
    /* Darker text for name */
    margin: 0;
    /* Remove default paragraph margin */
}

.testimonial-title {
    font-size: 16px;
    /* Adjust font size */
    /* Slightly lighter text for title */
    margin: 0;
    /* Remove default paragraph margin */
}

.testimonial-quote-wrapper {
    /* This div can hold specific quote styling if needed,
       e.g., a background or border specific to the quote area.
       For now, it just serves as a container for the quote text. */
}

.testimonial-quote {
    font-size: 36px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: -1.32px;
    /* Large, prominent size for the quote */
    line-height: 1.4;
    /* Good line height for readability */
    /* Main text color */
    margin: 0;
    /* Remove default paragraph margin */
    /* Add the custom font if you are using one */
    /* font-family: 'YourCustomFont', sans-serif; */
}

.image-wrapper {
    /* Define the size of the visible window */
    width: 100%;
    height: 518px;
    overflow: hidden;
}

.image-wrapper img {
    /* Make the image fill its container */
    width: 100%;
    height: 100%;

    /* The key to preventing stretch and maintaining aspect ratio */
    object-fit: cover;

    /* Position the image to show the desired part */
    /* Example: Focus on the center */
    object-position: center center;

    /* Example: Focus on a subject in the bottom-right corner */
    /* object-position: bottom right; */
}


.p-description p {
    font-size: 28px !important;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.28px;
}

/* Style the button container */
.button-primary {
    /* Visual styling */
    background-color: var(--color-feeling-blue-100);
    /* A dark, vibrant blue */
    color: #ffffff;
    /* White text */
    border: none;
    /* Removes the default border */
    border-radius: 10px;
    /* Adds rounded corners */
    font-family: ;
    /* Spacing and layout */
    padding: 15px 30px;
    /* Adds space inside the button */

    /* Font styling */
    font-size: 26px;
    font-weight: 600;

    /* Interactive styling */
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;

    /* Optional: Adds a subtle shadow for depth */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


/* Active effect: gives a "pressed down" look */
.button-primary:active {
    transform: translateY(2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

a {
    text-decoration: none;
    color: inherit;
    /* Inherit color from parent */
}

.button-primary {
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.button-primary:hover {
    background-color: #7666D3;
    /* Darker blue */
    transform: translateY(-2px);
    /* Slight lift */
}

.parallax-section {
    /* The image used */
    /* Set a specific height */
    min-height: 500px;
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-section {
    min-height: 500px;
    /* Adjust height as needed for your design */

    /* These three lines create the parallax effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* Ensures the image covers the entire section */

    display: flex;
    /* Use flexbox to center content */
    align-items: center;
    /* Center content vertically */
    justify-content: center;
    /* Center content horizontally */
    text-align: center;
    /* Center text within the content area */
    color: white;
    /* Default text color for readability over backgrounds */
    padding: 50px 20px;
    /* Add some padding around the content */
    position: relative;
    /* Needed for stacking context with the overlay */
    overflow: hidden;
    /* Prevent background scrollbar on some browsers */
}

/* Optional: Add a semi-transparent overlay to improve text readability */
.parallax-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    /* Adjust opacity for darker/lighter effect */
    z-index: 1;
    /* Place overlay below content */
}

.parallax-content {
    position: relative;
    /* Bring content above the overlay */
    z-index: 2;
    max-width: 800px;
    /* Constrain content width for better readability */
    margin: 0 auto;
    /* Center content horizontally */
}

.parallax-title {
    font-size: 3em;
    /* Larger font for titles */
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    /* Add shadow for better contrast */
}

.parallax-text {
    font-size: 1.2em;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Adjust default rich text styles within the parallax section if necessary */
.parallax-text p {
    margin-bottom: 1em;
}

/* You might also want to ensure any links inside .parallax-text are styled for contrast */
.parallax-text a {
    color: inherit;
    /* or a specific light color */
    text-decoration: underline;
}

.full-width-image-section {
    position: relative;
    width: 100% !important;
    /* Essential for positioning the pseudo-element relative to this section */
    overflow: hidden;
    /* Crucial to clip the green background if it would visually extend past border-radius */
    border-radius: 10px;
    /* Rounded corners for the entire *visual* section (including the green part) */

    /* === Technique to make the section "break out" of the parent's padding === */
    /* Negative margins pull the section out by the amount of the parent's padding */
    margin-left: calc(-1 * var(--page-wrapper-padding));
    margin-right: calc(-1 * var(--page-wrapper-padding));
    /* This sets its total width to 100% of the viewport (minus outer body margins), plus the pulled-out parts */
    width: calc(100% + (2 * var(--page-wrapper-padding)));

    /* Re-apply padding *inside* this section so its direct content (like the image) aligns */
    padding-left: var(--page-wrapper-padding);
    padding-right: var(--page-wrapper-padding);

    /* Vertical spacing and positioning for the image relative to the green background */
    padding-top: 40px;
    /* Adjust this to control space above the image */
    padding-bottom: 40px;
    /* Adjust this to control how much green background shows *below* the image */
    /* The image itself appears to be centered vertically within the white space created by these paddings. */
    margin-bottom: 84px;
}

/* --- The Green Background Pseudo-Element --- */
.full-width-image-section::after {
    content: "";
    /* Essential for pseudo-elements */
    position: absolute;
    bottom: 0;
    /* Starts precisely at the bottom of the .full-width-image-section */
    left: 0;
    width: 100%;
    /* Fills the entire width of the .full-width-image-section (which is now wider) */
    height: 55%;
    /* As per your update, covers 55% height from the bottom */
    background-color: var(--Head-Lights);
    z-index: -1;
    /* Ensures this background is *behind* the image */
}

/* --- The Image Content Itself --- */
.full-width-image-section .img-content {
    display: block;
    /* Makes the image behave like a block element for sizing and centering */
    max-width: calc(100% - 40px);
    /* Example: image width less its own border and some inner space */
    height: auto;
    /* Maintains the image's aspect ratio */
    margin: 0 auto;
    /* Centers the image horizontally within the section's padding */
    position: relative;
    /* Needed to give it a z-index context */
    z-index: 1;
    /* Ensures the image is *above* the green background */

    /* Styling for the image's appearance */
    border-radius: 5px;
    /* Subtle rounded corners on the image itself */
    border: 2px solid var(--image-border-color);
    /* The border directly around the image */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Optional: subtle shadow for depth */
}

.paragraph-block {
    font-family: Barlow;
    font-style: normal;
    font-weight: 400;
    margin: auto;
    max-width: 800px;
    /* 33.6px */
    letter-spacing: -0.28px;
    /* Adds some space below paragraphs */
}

.paragraph-block p {
    font-size: 28px;
    margin-bottom: 0;
}

.faq-section,
.reusable-faq-section {
    margin: 0 auto;
    /* Center the section on the page */
    display: flex;
    /* Use flexbox for the two-column layout */
    gap: 40px;
    /* Space between the left (title) and right (questions) columns */
    align-items: flex-start;
    /* Aligns items to the top of the container */
    margin-bottom: 84px;
}

/* --- Left Column: FAQ Section Title --- */
.faq-section-title-wrapper {
    flex-shrink: 0;
    /* Prevents this column from shrinking */
    width: 300px;

}

.faq-section-title {
    font-size: 2.5em;
    max-width: 500px;
    font-size: 48px;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
    /* Large font size for the main title */
    font-weight: bold;
    color: var(--text-color-dark);
    margin: 0;
    /* Remove default heading margins */
    line-height: 1.2;
    /* Tighter line height for titles */
}

/* Green line next to "Frequently Asked Questions" heading */
.faq-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    /* Position the line to the left edge of its parent (.faq-section-title-wrapper) */
    top: 0;
    bottom: 0;
    width: 4px;
    /* Thickness of the green line */
    background-color: var(--Head-Lights);
    border-radius: 4px;
    /* Soften the edges of the line */
}

/* --- Right Column: FAQ List Container --- */
.faq-list {
    flex-grow: 1;
    /* Allows the list to take up the remaining available space */
    min-width: 0;
    /* Important for flex items inside a flex container to allow shrinking */
}

/* --- Individual FAQ Accordion Item --- */
.faq-item {
    background-color: #fff;
    /* White background for each item */
    border-bottom: 1px solid #CCCCCC;
    /* Separator line between items */
    overflow: hidden;
    /* Crucial for hiding content and transition */
    /* No margin-bottom here, the border handles separation */
}

.faq-item:last-child {
    border-bottom: none;
    /* No border on the very last item */
}

/* Header for the question (the clickable area) */
.faq-question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    /* Vertical padding around the question text */
    cursor: pointer;
    font-size: 1.1em;
    /* Question font size */
    font-weight: 600;
    gap: 40px;
    color: var(--text-color-dark);
}

.faq-question {
    text-overflow: ellipsis;
    margin: 0;
    /* H2 */
    font-family: Barlow;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    /* 33.6px */
    letter-spacing: -0.84px;
}

/* Arrow Icon Styling */
.faq-arrow-icon {
    width: 15px;
    /* Size of the arrow icon */
    height: 15px;
    border-top: 2px solid black;
    /* Top part of the arrow */
    border-right: 2px solid black;
    /* Right part of the arrow */
    transform: rotate(132deg);
    /* Initial state: points down (like a > rotated) */
    transition: transform 0.3s ease-out;
    /* Smooth rotation transition */
    flex-shrink: 0;
    /* Prevents the icon from shrinking */
    margin-right: 10px;
}

/* Arrow Icon when accordion is open (points up) */
.faq-item.is-open .faq-arrow-icon {
    transform: rotate(312deg);
    /* Rotates to point up */
}

/* Answer Content Styling */
.faq-answer-content {
    max-height: 0;
    /* Initially hidden, controlled by JS */
    overflow: hidden;
    /* Hides content when max-height is 0 */
    transition: max-height 0.3s ease-out, padding-top 0.3s ease-out, padding-bottom 0.3s ease-out;
    /* Smooth transitions for height and padding */
    padding: 0;
    /* Initial padding when collapsed */
    color: var(--text-color-light);
    line-height: 1.6;
}

/* Answer Content when accordion is open */
.faq-item.is-open .faq-answer-content {
    /* Padding above the answer text when open */
    padding-bottom: 20px;
    /* Padding below the answer text when open */
}

/* Ensure rich text content inside answers is styled correctly */
.faq-answer-content p {
    margin-top: 0;
    margin-bottom: 1em;
    /* Add space between paragraphs in the answer */
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
    /* No margin after the last paragraph */
}


/* --- Responsive Adjustments --- */
@media (max-width: 992px) {

    /* Adjust breakpoint as needed */
    .faq-section,
    .reusable-faq-section {
        flex-direction: column;
        /* Stack title and questions vertically on smaller screens */
        gap: 30px;
        padding: 30px 15px;
        /* Adjust padding for smaller screens */
    }

    .faq-section-title-wrapper {
        width: 100%;
        /* Full width for title column */
        padding-right: 0;
        /* Remove specific padding on right side of title wrapper */
        text-align: center;
        /* Center the title on mobile */
    }

    .faq-section-title {
        font-size: 2em;
        /* Smaller font size for main title on mobile */
        padding-left: 0;
        /* Remove green line space on mobile if it looks awkward */
    }

    .faq-section-title::before {
        /* If you want the green line on mobile, you might need to reposition it,
           e.g., as a small line below the centered title. For now, hide it: */
        display: none;
        /* Hides the green line on smaller screens */
    }

    .faq-list {
        padding: 0 15px;
        /* Add some horizontal padding to the list of questions */
    }

    .faq-question-header {
        padding: 15px 0;
    }

    .faq-question {
        font-size: 20px;
    }

    .button-highlight {
        border: none;
        background: none;
    }
}


.team-section-heading {
    font-size: 48px;
    color: var(--text-color-dark);
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    /* CHANGE HERE: Explicitly set to 5 columns with equal width, and gap */
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    /* Center the grid */
    justify-content: start;
    /* Aligns grid items to the start of the grid container */
}

.team-member-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* CHANGES HERE: Remove background and shadow */
    background-color: transparent;
    /* No background color */
    box-shadow: none;
    /* No shadow */
    padding: 0;
    /* Remove padding if not needed, or adjust */
}

.team-member-image {
    /* CHANGES HERE: Set exact dimensions, remove border-radius, adjust border */
    width: 247px;
    height: 330px;
    border-radius: 0;
    /* Not rounded */
    object-fit: cover;
    /* Based on the image, there's no prominent green border.
       If you want a subtle thin grey border, you can add: */
    border: 1px solid var(--border-color-light);
    /* Example subtle border */
    margin-bottom: 12px;
    /* Space between image and name */
    transition: transform 0.3s ease-in-out;
}

.team-member-image-placeholder {
    /* Adjust placeholder to match new image dimensions and styling */
    width: 247px;
    height: 330px;
    border-radius: 0;
    /* Not rounded */
    background-color: #f0f0f0;
    border: 1px dashed var(--border-color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: var(--text-color-light);
    font-size: 0.9em;
    text-align: center;
}

.team-member-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color-dark);
    margin-bottom: 5px;
    /* Space between name and title */
    line-height: 1.3;
    margin-top: 0;
}

.team-member-title {
    font-size: 16px;
    color: var(--text-color-light);
    margin-bottom: 0;
    line-height: 1.3;
    margin-top: 0;
}

/* Remove hover effect if it's no longer desired with the new aesthetic */
.team-member-card:hover .team-member-image {
    transform: scale(1.05);
    /* Remove any previous hover transform */
}

/* --- Responsive Adjustments for Team Section --- */
@media (max-width: 1200px) {

    /* Adjust breakpoint for 4 columns */
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {

    /* Adjust breakpoint for 3 columns */
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {

    /* Adjust breakpoint for 2 columns */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .team-member-image,
    .team-member-image-placeholder {
        width: 180px;
        /* Adjust image size for smaller screens */
        height: 240px;
    }

    .team-section-heading {
        font-size: 2em;
    }
}

@media (max-width: 576px) {

    /* Adjust breakpoint for 1 column */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .team-member-image,
    .team-member-image-placeholder {
        width: 80%;
        /* Make images take most of the width */
        max-width: 247px;
        /* Don't exceed original size */
        height: auto;
        /* Maintain aspect ratio */
    }
}

.two-column-image-text-section {
    display: flex;
    /* Use flexbox for the two-column layout */
    align-items: stretch;
    /* Adjust max-width to match your content area */
    margin: 0 auto;
    /* Center the section */
}

.two-column-image-text-section .left-column {
    flex: 1;
    /* Allows left column to grow and shrink */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Distributes space between elements */
    padding-right: 64px;
    /* Optional: space before right column */
}

.two-column-image-text-section .right-column {
    /* Allows right column to grow and shrink */
    display: flex;
    /* Use flex to align image */
    overflow: hidden;
    /* Hide overflow if image is too big */
}

.two-column-image-text-section .section-heading {
    font-size: 64px;
    margin-top: 0px;

    /* Adjust font size */
    font-weight: bold;
    color: var(--text-color-dark);
    margin-bottom: 48px;
    line-height: 1.2;
}

.two-column-image-text-section .section-text {
    font-size: 1.1em;
    /* Adjust font size */
    color: var(--text-color-light);
    margin-bottom: 30px;
    /* Space below text and before image */
}

.two-column-image-text-section .left-column-image {
    width: 100%;
    /* Make left image fill its column width */
    height: auto;
    border-radius: 10px;
    /* Maintain aspect ratio */
    display: block;
    /* Remove extra space below image */
    object-fit: cover;
    /* Ensures image covers area, might crop */
}

.two-column-image-text-section .right-column-full-image {
    /* Make right image fill its column height */
    object-fit: cover;
    /* Crucial for full-height image: crops to fit, maintains aspect ratio */
    display: block;
    height: 100%;
    border-radius: 10px;
}

.left-column-text-content {
    padding-right: 54px;
    padding-left: 54px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .two-column-image-text-section {
        flex-direction: column;
        /* Stack columns vertically on smaller screens */
        gap: 30px;
        margin-bottom: 84px;
        /* Adjust padding */
    }

    .left-column-text-content {
        padding-right: 0px;
        padding-left: 0px;
    }

    .two-column-image-text-section .left-column,
    .two-column-image-text-section .right-column {
        width: 100%;
        /* Full width for stacked columns */
        padding-right: 0;
    }

    .two-column-image-text-section .left-column-image,
    .two-column-image-text-section .right-column-full-image {
        max-width: 100%;
        /* Ensure images don't overflow */
        height: auto;
        /* Adjust height automatically */
    }
}

@media (max-width: 576px) {
    .two-column-image-text-section .section-heading {
        font-size: 4em;
    }

    .two-column-image-text-section .section-text {
        font-size: 1em;
    }
}

.design-thinking-section {
    padding: 80px 80px;
    /* Adjust padding as needed */
    /* Max width of the content area */

    margin: 0 auto;
    /* Center the section */
    padding-bottom: 0px;
}

.design-thinking-section .header-content {
    margin-bottom: 84px;
    flex-direction: column;
    gap: 0;
    /* Space between header and steps */
}

.design-thinking-section .main-heading {
    font-size: 64px;
    margin-bottom: 0;
    /* Larger heading as per design */
    font-weight: 800;
    /* Extra bold */
    color: var(--text-color-dark);
    margin-bottom: 20px;
    line-height: 1.1;
}

.design-thinking-section .intro-text {
    font-size: 28px;
    text-align: center;
    /* Slightly larger intro text */
    color: var(--text-color-dark);
    /* Constrain width for readability */
    margin: 0 auto;
    /* Center the intro text */
    line-height: 120%;
}

.design-thinking-section .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    /* Responsive grid for steps */
    gap: 30px;
    /* Space between step cards */
    margin-bottom: 60px;
    /* Space between steps and button */
    justify-content: center;
    /* Center items if they don't fill a row */
}

.design-thinking-section .step-card {
    display: flex;
    flex-direction: column;
    padding-right: 10px;
    padding-left: 10px;
    border-right: 1px solid #ccc;
}

.design-thinking-section .step-card:last-child {
    border-right: none;
    /* Remove border from the last step card */
}

.design-thinking-section .icon-wrapper {
    width: 100px;
    /* Size of the circle background */
    height: 100px;
    /* Pink border */
    border-radius: 50%;
    /* Make it circular */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.design-thinking-section .step-icon {
    width: 95px;
    /* Icon size inside the circle */
    height: 95px;
    object-fit: contain;
    /* Ensure icon is fully visible */
}

.design-thinking-section .step-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color-dark);
    margin-top: 10px;
    margin-bottom: 12px;
}

.design-thinking-section .step-description {
    font-size: 18px;
    color: var(--text-color-light);
    line-height: 1.5;
    margin-top: 0px;
}

.design-thinking-section .cta-button {
    display: inline-block;
    text-align: center;
    background-color: var(--pink-accent);
    color: #fff;
    padding: 15px 40px;
    border-radius: 8px;
    /* Rounded button */
    text-decoration: none;
    font-size: 26px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.design-thinking-section .cta-button:hover {
    background-color: #D400E7;
    /* Example darker hover state */
    /* Note: 'darken' is a SASS function. In pure CSS, you'd use a specific hex/rgba value */
    /* Example pure CSS hover: background-color: #D400E7; */
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .design-thinking-section .main-heading {
        font-size: 2.5em;
    }

    .design-thinking-section .intro-text {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .design-thinking-section .main-heading {
        font-size: 2em;
    }

    .design-thinking-section .steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .design-thinking-section .icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .design-thinking-section .step-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .design-thinking-section {
        padding: 40px 15px;
    }

    .design-thinking-section .main-heading {
        font-size: 1.8em;
    }

    .design-thinking-section .intro-text {
        font-size: 0.95em;
    }

    .design-thinking-section .steps-grid {
        grid-template-columns: 1fr;
        /* Stack steps on very small screens */
    }

    .design-thinking-section .cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
}

.button-block {
    display: flex;
}

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

/* --- Two Column Content Section Styling (for both blocks) --- */
.two-column-content-section {
    display: flex;
    /* Enable flexbox for columns */
    align-items: flex-start;
    gap: 40px;
    /* Space between columns */
    padding-left: 80px;
    padding-right: 80px;
    padding-top: 0px;
    /* Vertical and horizontal padding */
    /* Adjust max-width to match your page content width */
    margin: 0 auto;
    margin-top: 84px;
    /* Center the section */
}

.two-column-content-section .column {
    min-width: 0;
    /* Allow content to shrink properly */
}

.two-column-content-section .content-column {
    /* Basic styling for rich text content */
    flex: 1;
    line-height: 1.6;
    color: var(--secondary-text-color);
    /* Assuming you have this variable */
    min-width: 300px;
}


.two-column-content-section .content-column p:last-child {
    margin-bottom: 0;
    /* Remove bottom margin from last paragraph */
}

.two-column-content-section .image-column {
    /* FIXED WIDTH for the column holding the image (Image max-width is 480px) */
    /* Add some padding/margin if you want space around the 480px image within this column */
    flex: 0 0 480px;
    /* Do not grow, do not shrink, base size 480px */
    width: 480px;
    /* Explicit width for older browser compatibility */
    display: flex;
    justify-content: center;
    /* Center image horizontally within its fixed column */
    align-items: flex-start;
    /* Align image to the top of its column */
}

.two-column-content-section .column-image {
    width: 100%;
    /* Image fills its column */
    height: auto;
    /* Maintain aspect ratio */
    display: block;
    /* Remove extra space below image */
    object-fit: contain;
    /* Ensures image covers the area, might crop */
    border-radius: 8px;
    /* Optional: slight rounding for images */
    /* Optional: subtle shadow */
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .two-column-content-section {
        flex-direction: column;
        /* Stack columns vertically on medium screens */
        gap: 30px;
        padding: 0px 0px;
    }

    /* When stacked, columns should take full width and revert to flexible sizing */
    .two-column-content-section .column,
    .two-column-content-section .content-column,
    .two-column-content-section .image-column {
        flex: 1 1 auto;
        /* Allow growth/shrink to fill width */
        width: 100%;
        /* Full width when stacked */
        max-width: 100%;
        /* Ensure no overflow */
    }

    .two-column-content-section .column-image {
        /* When stacked, let the image scale responsively */
        max-width: 480px;
        /* Image should not exceed its intended max width */
        height: auto;
        /* Maintain aspect ratio */
        margin: 0 auto;
        /* Center image when stacked */
    }
}


.content-column h2 {
    font-size: 62px;
    /* Adjust heading size for better readability */
    margin-bottom: 32px;
    /* Remove top margin for better alignment */
    margin-top: 0px;
    line-height: 110%;
}

.content-column p {
    font-size: 28px;
    /* Adjust paragraph size for better readability */
    margin-bottom: 32px;
    /* Space between paragraphs */
    line-height: 120%;
    /* Good line height for readability */
}

.CTA1 {
    margin-bottom: 84px;
}

/* --- Core Values Section Styling --- */
.core-values-section {
    background-color: var(--light-grey-section-bg);
    padding-bottom: 0;
    overflow: hidden;
    position: relative;
    margin-left: -32px;
    margin-right: -32px;
    padding-left: 32px;
    padding-right: 32px;
}

.core-values-section::after {
    content: "";
    /* Essential for pseudo-elements */
    position: absolute;
    bottom: 0;
    /* Starts precisely at the bottom of the .full-width-image-section */
    left: 0;
    width: 100%;
    /* Fills the entire width of the .full-width-image-section (which is now wider) */
    height: 70%;
    /* As per your update, covers 55% height from the bottom */
    background-color: var(--color-burgundy-sky-80);
    z-index: -1;
    /* Ensures this background is *behind* the image */
}



.core-values-section .main-heading {
    font-size: 64px;
    font-weight: 600;
    color: var(--primary-text-color);
    margin-bottom: 60px;
    line-height: 1.2;
    margin-top: 0;
}

.core-values-section .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
}

.core-values-section .core-value-card {
    border-radius: 12px;
    overflow: hidden;
    /* REMOVE BOX SHADOW: Commented out or deleted */
    /* box-shadow: 0 5px 20px rgba(0,0,0,0.08); */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.core-values-section .card-image-wrapper {
    width: 100%;
    background: linear-gradient(135deg, var(--card-bg-gradient-start) 0%, var(--card-bg-gradient-end) 100%);
    padding-top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.core-values-section .card-image {
    width: 90%;
    height: auto;
    display: block;
    object-fit: contain;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    transform: translateY(10px);
}

.core-values-section .card-text-content {
    padding: 30px;
    text-align: left;
    flex-grow: 1;
    padding-top: 20px;
}

.core-values-section .card-title {
    font-size: 28px;
    font-weight: 600;
    color: #FFF;
    margin-top: 0;
    margin-bottom: 15px;
}

.core-values-section .card-description {
    font-size: 18px;
    color: #CCC;
    line-height: 1.6;
    margin-bottom: 0;
}

.core-values-section .bottom-band {
    /* APPLY BURGUNDY BACKGROUND COLOR */
    background-color: var(--color-burgundy-sky-80);
    height: 100px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .core-values-section .main-heading {
        font-size: 2.5em;
        margin-bottom: 40px;
    }

    .core-values-section .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .core-values-section .content-container {
        padding-bottom: 60px;
    }

    .core-values-section .bottom-band {
        height: 80px;
    }

    .core-values-section::after {
        height: 90%;
        /* Increase to 90% for screens <= 992px */
    }

}

@media (max-width: 768px) {
    .core-values-section .main-heading {
        font-size: 2em;
    }

    .core-values-section .values-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .core-values-section .core-value-card {
        margin-bottom: 20px;
    }

    .core-values-section .bottom-band {
        height: 60px;
    }
}

@media (max-width: 576px) {
    .core-values-section {
        padding-top: 60px;
    }

    .core-values-section .content-container {
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 40px;
    }
}

/* --- Cases Grid Styling --- */
.cases-grid {
    display: grid;
    /* Create a grid with 6 equal columns.
       Three items will span 2 columns each (3 x 2 = 6).
       Two items will span 3 columns each (2 x 3 = 6). */
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-top: 84px;
}

/* --- The 3-2-3-2 Layout --- */
/* Selects every 1st, 2nd, and 3rd item in a set of 5 */
.cases-grid .case-card:nth-child(5n+1),
.cases-grid .case-card:nth-child(5n+2),
.cases-grid .case-card:nth-child(5n+3) {
    grid-column: span 2;
}

/* Selects every 4th and 5th item in a set of 5 */
.cases-grid .case-card:nth-child(5n+4),
.cases-grid .case-card:nth-child(5n+5) {
    grid-column: span 3;
}

/* --- Case Card Styling --- */
.case-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

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

.case-image-container {
    position: relative;
    width: 100%;
    padding-top: 75%;
    /* 4:3 Aspect Ratio (3/4 = 0.75) */
    overflow: hidden;
}

.case-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

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

/* --- Gradient and Text Styling --- */
.case-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
    pointer-events: none;
    z-index: 1;
}

.case-text-overlay {
    position: absolute;
    padding-bottom: 38px;
    font-size: 16px;
    bottom: 0;
    left: 0;
    font-weight: 600;
    width: 100%;
    color: #fff;
    box-sizing: border-box;
    z-index: 2;
    /* Ensures text is on top of the gradient */
    text-align: center;
    /* Center the text */
}

.case-text-overlay h3 {
    font-size: 1.5em;
    margin: 0;
}

.main-heading {
    font-size: 64px;
    font-weight: 600;
    color: var(--primary-text-color);
    margin-bottom: 16px;
    line-height: 1.2;
    margin-top: 0;
    text-align: center;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .cases-grid {
        /* On smaller screens, go back to a simple, uniform grid */
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .cases-grid .case-card:nth-child(n) {
        grid-column: auto;
        /* Reset column span for all children */
    }
}

.intro-text {
    font-size: 28px;
    text-align: center;
    /* Slightly larger intro text */
    color: var(--text-color-dark);
    /* Constrain width for readability */
    margin: 0 auto;
    /* Center the intro text */
    line-height: 120%;
}

.intro-text p {
    font-size: 28px;
    line-height: 120%;
    letter-spacing: -0.28px;
    margin: 0;
}

.header-content h1 a {
    text-decoration: none;
    color: #333;
    font-size: 1.1em;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

/* --- Active State Styling --- */
.header-content h1 a.is-active {
    color: #ff69b4;
    /* Pink */
    font-weight: bold;
}

.header-content h1 a.is-active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ff69b4;
    /* Pink line */
}

.header-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .header-block {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.left-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

@media (min-width: 768px) {
    .left-content {
        flex-direction: row;
        gap: 20px;
    }
}



.text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.text-content h1 {
    font-size: 2.5em;
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
    padding-left: 10px;
    border-left: 4px solid var(--orange);
}

.text-content p {
    font-size: 1em;
    color: #555;
    margin: 10px 0 20px 0;
}

.cta-button {
    background-color: var(--orange);
    color: white;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1em;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e07b00;
}

.main-image-container {
    flex: 1.5;
    width: 100%;
}

@media (min-width: 768px) {
    .main-image-container {
        width: auto;
    }
}


/* --- Desktop Styles (Default) --- */
.hero-section {
    /* Add padding to the overall section if needed */
    padding: 4rem 2rem;
}

.hero-container {
    display: flex;
    flex-direction: row;
    /* Arrange items side-by-side */
    align-items: center;
    /* Vertically center the columns */
    gap: 2rem;
    margin-bottom: 84px;
    /* Creates space between the text and image columns */
}

.hero-content {
    flex: 1;
    /* Takes up 50% of the space */
    padding-right: 2rem;
}

.hero-image-wrapper {
    flex: 1;
    /* Takes up the other 50% of the space */
    text-align: right;
    /* Pushes the image to the right */
}

.hero-title {
    font-size: 84px;
    font-weight: 500 !important;
    /* Keep your important flag if needed */
    margin-bottom: 20px;
    /* Space between title and button */
}

.hero-button-wrapper {
    margin-top: 20px;
}

.hero-image {
    max-width: 100%;
    /* Makes the image responsive */
    height: auto;
    /* Maintains aspect ratio */
    display: inline-block;
    /* Fixes potential spacing issues */
}


/* --- Mobile Styles --- */
/* This block applies only when the screen width is 768px or less */
@media (max-width: 768px) {

    .hero-container {
        /* This is the key change! */
        flex-direction: column;

    }

    .hero-content {
        /* On mobile, the content comes first, which is exactly what you want. */
        order: 1;
        /* Explicitly set the order */
        padding-right: 0;
        /* Remove side-padding */
    }

    .hero-image-wrapper {
        order: 2;
        /* The image will appear after the content */
    }

    .hero-title {
        /* 84px is too large for mobile. Let's make it smaller. */
        font-size: 48px;
    }
}

/* ---------------------------------- */
/* Contact Form Styles       */
/* ---------------------------------- */

/* --- Main Layout Container --- */
.contact-container {
    max-width: 720px;
    margin: 50px auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 12px;
    font-family: 'Barlow', sans-serif;
    color: #1a1a1a;
}

/* Modifier for the success page to center content */
.contact-container-success {
    text-align: center;
}

/* --- Typography --- */
.contact-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #1a1a1a;
    line-height: 1.2;
}

.contact-intro {
    color: var(--Blackest, #000);

    /* P2 */
    font-family: Barlow;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* 21.6px */
    letter-spacing: -0.18px;
}

/* --- Form Structure --- */
.contact-form {
    width: 100%;
}

.contact-form-group {
    margin-bottom: 25px;
}

.contact-label {
    color: #000;

    /* H2 */
    font-family: Barlow;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    /* 33.6px */
    letter-spacing: -0.84px;
}

/* --- Inputs, Textareas, Selects --- */
.contact-input {
    width: 100%;
    padding: 12px 15px;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    color: #1a1a1a;
    background-color: #fdfdfd;
    border: 1px solid #dddddd;
    border-radius: 8px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease-in-out;
    box-sizing: border-box;
    margin-top: 8px;
    /* Important for 100% width */
}

.contact-input:focus {
    outline: none;
    border-color: #888888;
    box-shadow: 0 0 0 3px rgba(100, 100, 100, 0.1);
    background-color: #ffffff;
}

textarea.contact-input {
    min-height: 150px;
    resize: vertical;
}

/* --- Custom Select Arrow Wrapper --- */
.contact-select-wrapper {
    position: relative;
}

.contact-select-wrapper::after {
    content: '';
    position: absolute;
    top: 72%;
    right: 15px;
    width: 25px;
    height: 25px;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25 25' fill='none'%3e%3cpath d='M20 9.97266L12.5 17.4727L5 9.97266' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    /* Allows clicks to go through to the select */
}

select.contact-input {
    appearance: none;
    /* Hides default arrow on most browsers */
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px;
    /* Make space for our custom arrow */
}

/* --- Buttons --- */
.contact-submit-btn {
    display: inline-block;
    background-color: var(--Head-Lights, #CBFF2E);
    border: none;
    color: #1a1a1a;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 40px;
    padding-right: 40px;
    font-size: 26px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 8px rgba(170, 255, 0, 0.2);
    margin-top: 10px;
    letter-spacing: -0.78px;
}

.contact-submit-btn:hover,
.contact-submit-btn:focus {
    background-color: #E0FE82;
    box-shadow: 0 6px 12px rgba(170, 255, 0, 0.3);
    transform: translateY(-1px);
}

.contact-return-btn {
    display: inline-block;
    background-color: #eeeeee;
    border: 1px solid #dddddd;
    color: #555555;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    margin-top: 20px;
}

.contact-return-btn:hover,
.contact-return-btn:focus {
    background-color: #dddddd;
    border-color: #cccccc;
    color: #333333;
}


/* --- Alerts & Messages --- */
.contact-alert-error {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 1rem;
    background-color: #ffeaea;
    color: #cc0000;
    border: 1px solid #ffcccc;
}

.contact-success-box {
    font-family: 'Barlow', sans-serif;
    padding: 25px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.contact-success-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.contact-success-text {
    font-size: 2rem;
    margin: 0;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .contact-container {
        margin: 20px;
        padding: 25px;
    }

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