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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 140px; /* Account for header height */
}

body {
    background-color: #EBE9E6;
    font-family: 'Inter Tight', sans-serif;
}

/* Navbar Styles */
header {
    background-color: #EBE9E6;
    padding: 20px;
    margin-top: 60px;
    margin-left: 60px;
    margin-right: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-home {
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    display: inline-flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.home_span {
    color: var(--Black, #1A1918);
    font-size: 18px;
    font-family: Inter Tight;
    font-weight: 400;
    word-wrap: break-word;
}

.nav-menu {
    justify-content: flex-start;
    align-items: center;
    gap: 60px;
    display: inline-flex;
}

.nav-item {
    padding-top: 5px;
    padding-bottom: 5px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}


.about_span,
.about_01_span,
.about_02_span,
.about_03_span {
    color: var(--Black, #1A1918);
    font-size: 18px;
    font-family: Inter Tight;
    font-weight: 400;
    word-wrap: break-word;
}

.line-1 {
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--Copper, #AE6A41);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.nav-home .line-1 {
    opacity: 1;
    transform: scaleX(1);
}

/* Hover & focus effects */
.nav-home:hover .line-1,
.nav-item:hover .line-1,
.nav-item:focus-visible .line-1,
.nav-home:focus-visible .line-1 {
    opacity: 1;
    transform: scaleX(1);
}

/* Hero Section */
.hero {
    margin-top: 233px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 399px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 399px;
    height: auto;
    transition: opacity 0.6s ease;
}

.hero-image-copper {
    position: absolute;
    opacity: 1;
}

.hero-image-grey {
    opacity: 0;
}

.hero.scrolled .hero-image-copper {
    opacity: 0;
}

.hero.scrolled .hero-image-grey {
    opacity: 1;
}

.hero__headline {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.hero.scrolled .hero__headline {
    opacity: 1;
}

.hero__headline-text {
    color: var(--Moss, #005942);
    font-size: 180px;
    font-family: Arsenal;
    font-weight: 400;
    line-height: 160px;
    word-wrap: break-word;
    display: inline-block;
}


/* About Section */
.about {
    width: 100%;
    margin: 280px 0 0;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.image {
    width: 50%;
    height: 540px;
    object-fit: cover;
}

.about-content {
    flex: 1 1 0;
    height: 540px;
    padding-left: 90px;
    padding-right: 90px;
    padding-top: 180px;
    padding-bottom: 180px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.about__description {
    flex: 1 1 0;
}

.about__description-intro {
    color: var(--Black, #1A1918);
    font-size: 18px;
    font-family: Inter Tight;
    font-weight: 600;
    line-height: 28px;
    word-wrap: break-word;
}

.about__description-body {
    color: var(--Black, #1A1918);
    font-size: 16px;
    font-family: Inter Tight;
    font-weight: 400;
    line-height: 28px;
    word-wrap: break-word;
}

/* Services Section */

.services_01 {
    display: none;
}

.services {
    width: 100%;
    margin: 250px 0 0;
    display: flex;
    gap: 60px;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 60px;
    box-sizing: border-box;
}

.services__intro {
    flex: 0 0 380px;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.services__intro-text {
    color: var(--Black, #1A1918);
    font-size: 18px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    line-height: 28px;
}

.services__nav {
    display: inline-flex;
    gap: 30px;
}

.services__nav-btn {
    width: 48px;
    height: 48px;
    border: none;
    background: none;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    overflow: hidden;
}


.services__nav-btn img {
    width: 32px;
    height: 32px;
}

/* Rotation for desktop buttons */
.services__nav-btn--prev.copper {
    transform: rotate(180deg);
}

.services__nav-btn--next.grey {
    transform: rotate(-180deg);
}


.services__cards {
    flex: 1 1 auto;
    display: flex;
    gap: 30px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: thin;
    scrollbar-color: rgba(174, 106, 65, 0.4) transparent;
}

.service-card:last-child {
    margin-right: 30px;
}

.service-card {
    flex: 0 0 400px;
    width: 400px;
    min-width: 400px;
    padding: 30px;
    border-radius: 6px;
    background: var(--White, #FFFFFF);
    display: flex;
    flex-direction: column;
    gap: 30px;
    overflow: hidden;
}

.service-card__title {
    color: var(--Black, #1A1918);
    font-size: 22px;
    font-family: 'Arsenal', sans-serif;
    font-weight: 700;
    line-height: 22px;
    text-transform: uppercase;
}

.service-card__divider {
    width: 60px;
    height: 0;
    border-top: 2px solid var(--Copper, #AE6A41);
}

.service-card__body {
    color: var(--Black, #1A1918);
    font-size: 16px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    line-height: 28px;
    flex: 1 1 auto;
    overflow: hidden;
}

.services__cards::-webkit-scrollbar {
    display: none;
}

/* Team Section */
.team {
    width: calc(100% - 296px);
    max-width: 1145px;
    margin: 250px 148px 0;
    justify-content: flex-start;
    align-items: stretch;
    gap: 30px;
    display: flex;
    box-sizing: border-box;
}

.team-member-card {
    flex: 1 1 0;
    padding: 45px 45px 45px 45px;
    border-top: 2px var(--Greyd, #C7C1BB) solid;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
    display: flex;
    min-width: 0;
    box-sizing: border-box;
}

/* Second team member card - uses same styles as .team-member-card */

.team-member-header {
    align-self: stretch;
    justify-content: space-between;
    align-items: center;
    display: inline-flex;
    width: 100%;
    box-sizing: border-box;
}

.team-member-name-container {
    flex: 1 1 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
    display: inline-flex;
}

.team-member-image-container {
    width: 141.54px;
    height: 185px;
    position: relative;
}

.team-member-name {
    align-self: stretch;
}

.team-member-name__text {
    color: var(--Black, #1A1918);
    font-family: 'Arsenal', serif;
    font-weight: 400;
    line-height: 55px;
    font-size: 65px;
    word-wrap: break-word;
}

.team-member-role {
    align-self: stretch;
}

.team-member-role__label {
    color: var(--Black, #1A1918);
    font-size: 22px;
    font-family: 'Arsenal', serif;
    font-weight: 700;
    line-height: 24px;
    word-wrap: break-word;
}

.team-member-card .image {
    width: 92px;
    height: 120px;
    object-fit: cover;
}

/* Ensure image in team-member-card has explicit width */
.team .team-member-card img.image {
    width: 92px;
}

.team-member-bio {
    align-self: stretch;
}

.team-member-bio__text {
    color: var(--Black, #1A1918);
    font-size: 16px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    line-height: 28px;
    word-wrap: break-word;
}

/* Tablet Responsive Styles (768px - 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    /* Header spacing for tablet */
    header {
        margin-left: 40px;
        margin-right: 40px;
    }

    .nav-home {
        justify-content: flex-start;
        align-items: center;
        gap: 5px;
        display: inline-flex;
        flex-direction: column;
    }

    .nav-item {
        padding-top: 5px;
        padding-bottom: 5px;
        justify-content: center;
        align-items: center;
        gap: 5px;
        display: flex;
        flex-direction: column;
    }

    .nav-menu {
        justify-content: flex-start;
        align-items: center;
        gap: 60px;
        display: inline-flex;
    }

    .line-1 {
        bottom: -6px;
        height: 2px;
    }

    .hero__headline-text {
        font-size: 135px;
        line-height: 120px;
    }

    /* About Section - Tablet */
    .about {
        width: 1024px;
        max-width: 100%;
        margin: 200px auto 0;
        display: inline-flex;
    }

    .image {
        flex: 1 1 0;
        width: 50%;
        height: 540px;
    }

    .about-content {
        flex: 1 1 0;
        width: 50%;
        height: 540px;
        padding: 60px;
        justify-content: center;
        align-items: center;
        display: flex;
    }

    .about__description {
        flex: 1 1 0;
    }

    /* Services Section - Tablet */
    .services {
        width: 1024px;
        max-width: 100%;
        margin: 140px auto 0;
        justify-content: flex-start;
        align-items: flex-start;
        display: inline-flex;
        padding: 0;
    }

    .services .services-cards-wrapper {
        display: none;
    }

    .services__intro {
        flex: 1 1 0;
        align-self: stretch;
        padding: 60px;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 30px;
        display: inline-flex;
    }

    /* Keep buttons visible on tablet */
    .services__nav-btn {
        width: 40px;
        height: 40px;
        cursor: pointer;
        display: block;
        border-radius: 50%;
        overflow: hidden;
    }

    .services__nav-btn img {
        width: 28px;
        height: 28px;
    }

    .services__intro-text {
        align-self: stretch;
        color: var(--Black, #1A1918);
        font-size: 18px;
        font-family: Inter Tight;
        font-weight: 600;
        line-height: 28px;
        word-wrap: break-word;
    }

    .services__nav {
        justify-content: flex-start;
        align-items: flex-start;
        gap: 30px;
        display: inline-flex;
    }

    .services__nav-btn {
        width: 36px;
        height: 36px;
    }

    .services__nav-btn img {
        width: 24px;
        height: 24px;
    }


    /* Services_01 section for tablet */
    .services_01 {
        width: 1440px;
        max-width: 100%;
        margin: 0 auto;
        justify-content: flex-start;
        align-items: flex-start;
        display: inline-flex;
    }

    .services_01 .services__cards {
        flex: 1 1 0;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        display: inline-flex;
        overflow-x: auto;
        scrollbar-width: thin;
        scrollbar-color: rgba(174, 106, 65, 0.4) transparent;
        width: 1711px;
    }

    .services_01 .service-card:first-child {
        margin-left: 60px;
    }

    .services_01 .service-card:last-child {
        margin-right: 60px;
    }

    .services_01 .services__cards::-webkit-scrollbar {
        display: none;
    }

    .services_01 .service-card {
        width: 400px;
        height: 580px;
        padding: 30px;
        background: var(--White, white);
        overflow: hidden;
        border-radius: 6px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 30px;
        display: inline-flex;
        flex: 0 0 auto;
    }

    .services_01 .service-card__title {
        align-self: stretch;
        color: var(--Black, #1A1918);
        font-size: 22px;
        font-family: Arsenal;
        font-weight: 700;
        text-transform: uppercase;
        line-height: 22px;
        word-wrap: break-word;
    }

    .services_01 .service-card__divider {
        width: 60px;
        height: 0px;
        outline: 2px var(--Copper, #AE6A41) solid;
        outline-offset: -1px;
    }

    .services_01 .service-card__body {
        align-self: stretch;
        color: var(--Black, #1A1918);
        font-size: 16px;
        font-family: Inter Tight;
        font-weight: 400;
        line-height: 28px;
        word-wrap: break-word;
    }

    /* Team Section - Tablet */
    .team {
        width: 100%;
        max-width: 100%;
        margin: 200px 0 0;
        padding: 0 60px;
        box-sizing: border-box;
        gap: 60px;
    }

    .team-member-card {
        padding: 0;
    }

    .team-member-header {
        margin-top: 45px;
        align-self: stretch;
        justify-content: space-between;
        align-items: center;
        display: inline-flex;
    }

    .team-member-name-container {
        flex: 1 1 0;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 15px;
        display: inline-flex;
    }

    /* Trudo Motmans name styling - Tablet */
    .team-member-card:first-of-type .team-member-name__text {
        font-size: 65px;
        line-height: 55px;
    }

    /* Team images - Tablet */
    .team-member-card .image {
        width: 141.54px;
        height: 185px;
        object-fit: contain;
    }
}

/* Mobile Responsive Styles (max-width: 767px) */
@media screen and (max-width: 767px) {
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }

    /* Header - Mobile */
    header {
        margin: 30px;
        padding: 0;
        justify-content: center;
        width: calc(100% - 60px);
        max-width: 100%;
        box-sizing: border-box;
    }

    .nav-home {
        display: none;
    }

    .nav-menu {
        width: 100%;
        max-width: 100%;
        justify-content: space-between;
        align-items: center;
        display: flex;
        gap: 0;
    }

    .nav-item {
        padding-top: 5px;
        padding-bottom: 5px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        display: flex;
        flex: 1 1 0;
        min-width: 0;
    }

    .about_span,
    .about_01_span,
    .about_02_span,
    .about_03_span {
        font-size: 18px;
        word-break: break-word;
    }

    .line-1 {
        display: none;
    }

    /* Hero Section - Mobile */
    .hero {
        margin-top: 100px;
    }


    .hero__headline-text {
        font-size: 89.82px;
        line-height: 79.84px;
    }

    .hero__headline {
        text-align: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: opacity 0.8s ease;
        width: 100%;
        max-width: 100%;
        padding: 0 30px;
        box-sizing: border-box;
        pointer-events: none;
        z-index: 10;
    }

    .hero.scrolled .hero__headline {
        opacity: 1;
    }

    .hero-image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        position: relative;
    }

    .hero-image {
        max-width: 250px;
        width: 100%;
        height: auto;
    }

    /* About Section - Mobile */
    .about {
        width: 100%;
        margin: 90px 0 0;
        flex-direction: column;
        align-items: center;
    }

    .image {
        width: 100%;
        height: 293px;
        object-fit: cover;
        order: 2;
    }

    .about-content {
        width: 100%;
        max-width: 100%;
        padding: 30px;
        height: auto;
        justify-content: center;
        align-items: center;
        display: inline-flex;
        order: 1;
        box-sizing: border-box;
    }

    .about__description {
        flex: 1 1 0;
    }

    /* Services - Mobile */
    .services {
        flex-direction: column;
        padding: 0;
        gap: 0;
        margin: 90px auto 0;
        width: 100%;
        max-width: 100%;
    }

    .services__intro {
        width: 100%;
        max-width: 100%;
        padding: 30px;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 30px;
        display: inline-flex;
        margin: 0;
        box-sizing: border-box;
    }

    .services__intro-text {
        align-self: stretch;
        color: var(--Black, #1A1918);
        font-size: 18px;
        font-family: 'Inter Tight', sans-serif;
        font-weight: 600;
        line-height: 28px;
        word-wrap: break-word;
    }

    .services__nav {
        justify-content: flex-start;
        align-items: flex-start;
        gap: 30px;
        display: inline-flex;
    }

    .services__nav-btn img {
        width: 44px;
        height: 44px;
    }

    .services .services-cards-wrapper {
        width: 100%;
        max-width: 100%;
        align-self: stretch;
        height: auto;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 30px;
        display: inline-flex;
        margin: 0;
        padding: 0 30px;
        box-sizing: border-box;
        overflow-x: auto;
        scrollbar-width: thin;
        scrollbar-color: rgba(174, 106, 65, 0.4) transparent;
    }

    .service-card {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        min-height: 536px;
        height: auto;
        padding: 30px;
        background: var(--White, white);
        overflow: hidden;
        border-radius: 6px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 30px;
        display: flex;
        box-sizing: border-box;
    }

    .service-card:last-child {
        margin-right: 0;
    }

    .service-card__title {
        align-self: stretch;
        color: var(--Black, #1A1918);
        font-size: 22px;
        font-family: 'Arsenal', serif;
        font-weight: 700;
        text-transform: uppercase;
        line-height: 22px;
        word-wrap: break-word;
    }

    .service-card__divider {
        width: 60px;
        height: 0px;
        outline: 2px var(--Copper, #AE6A41) solid;
        outline-offset: -1px;
    }

    .service-card__body {
        align-self: stretch;
        color: var(--Black, #1A1918);
        font-size: 16px;
        font-family: 'Inter Tight', sans-serif;
        font-weight: 400;
        line-height: 28px;
        word-wrap: break-word;
        overflow: visible;
    }

    /* Team Section - Mobile */
    .team {
        width: 100%;
        max-width: 100%;
        margin: 90px 0 0;
        padding: 0;
        flex-direction: column;
        gap: 0;
        box-sizing: border-box;
    }

    .team-member-card {
        width: 100%;
        max-width: 100%;
        padding: 45px 30px;
        margin: 0;
        box-sizing: border-box;
        flex: none;
        gap: 30px;
        border-top: 2px var(--Greyd, #C7C1BB) solid;
    }

    .team-member-card {
        order: 1;
        width: calc(100% - 60px);
        margin-left: 30px;
        margin-right: 30px;
        padding: 45px 0;
    }

    .team-member-card:last-of-type {
        order: 2;
    }

    .team-member-header {
        align-self: stretch;
        justify-content: space-between;
        align-items: center;
        display: flex;
        width: 100%;
        box-sizing: border-box;
    }

    .team-member-name-container {
        flex: 1 1 0;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 15px;
        display: inline-flex;
    }

    /* Trudo Motmans name styling - Mobile */
    .team-member-name__text {
        font-size: 45px;
        line-height: 35px;
    }

    /* Lawyer label styling - Mobile */
    .team-member-role__label {
        font-size: 22px;
        line-height: 24px;
    }

    /* Trudo's image - Mobile */
    .team-member-card .image {
        width: 92px;
        height: 120px;
        object-fit: cover;
    }

    /* Nicola's image container - Mobile */
    .team-member-image-container {
        width: 91.81px;
        height: 120px;
        position: relative;
    }

    /* Nicola's image - Mobile */
    .image_01 {
        width: 131.51px;
        height: 171.89px;
        left: -19.11px;
        top: -14.92px;
        position: absolute;
        object-fit: cover;
    }
}

/* Contact Section - Desktop */
.contact {
    width: 100%;
    margin: 205px 0 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.contact .image {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 800px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.contact-content {
    width: 910px;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
    display: inline-flex;
    margin: -180px 265px 60px 265px;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.contact-form {
    flex: 1 1 0;
    align-self: stretch;
    padding: 60px;
    background: var(--White, white);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.10);
    border-radius: 6px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
    display: inline-flex;
    box-sizing: border-box;
}

.form-field-group {
    align-self: stretch;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    display: flex;
}

.contact-form__label {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
}

.contact-form__label-text {
    color: var(--Black, #1A1918);
    font-size: 16px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    line-height: 24px;
    word-wrap: break-word;
}

.contact-form__label-optional {
    color: var(--Black, #1A1918);
    font-size: 16px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    line-height: 24px;
    word-wrap: break-word;
}

.contact-form__input {
    align-self: stretch;
    height: 40px;
    border-radius: 4px;
    border: 1px var(--Greyd, #C7C1BB) solid;
    background: transparent;
    padding: 0 15px;
    box-sizing: border-box;
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    color: var(--Black, #1A1918);
    width: 100%;
    outline: none;
}

.contact-form__input:focus {
    border-color: var(--Copper, #AE6A41);
}

.contact-form__textarea {
    align-self: stretch;
    min-height: 80px;
    border-radius: 4px;
    border: 1px var(--Greyd, #C7C1BB) solid;
    background: transparent;
    padding: 15px;
    box-sizing: border-box;
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    color: var(--Black, #1A1918);
    resize: vertical;
    width: 100%;
    outline: none;
}

.contact-form__textarea:focus {
    border-color: var(--Copper, #AE6A41);
}

.contact-form__submit-text {
    color: var(--White, white);
    font-size: 18px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    line-height: 24px;
    word-wrap: break-word;
}

.contact-submit-button {
    padding: 15px;
    background: var(--Copper, #AE6A41);
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    display: inline-flex;
    cursor: pointer;
    border: none;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.contact-submit-button:hover {
    background: #9a5a35;
}

.contact-submit-button:active {
    background: #8a4a25;
}

.contact-info-wrapper {
    width: 440px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
    display: inline-flex;
}

.contact-info-panel {
    align-self: stretch;
    padding: 60px;
    background: var(--Moss, #005942);
    border-radius: 6px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    display: flex;
    box-sizing: border-box;
}

.contact-info__headline {
    align-self: stretch;
}

.contact-info__headline-text {
    color: var(--Greyl, #EBE9E6);
    font-size: 22px;
    font-family: 'Arsenal', serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 22px;
    word-wrap: break-word;
}

.contact-info__description {
    align-self: stretch;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
    display: inline-flex;
}

.contact-info__description-text {
    flex: 1 1 0;
    color: var(--White, white);
    font-size: 18px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    line-height: 28px;
    word-wrap: break-word;
}

.contact-info__legal {
    align-self: stretch;
    text-align: center;
}

.contact-info__legal-link {
    color: #8C8073;
    font-size: 16px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    text-decoration: underline;
    line-height: 28px;
    word-wrap: break-word;
    cursor: pointer;
}

.contact-info__legal-separator,
.contact-info__legal-note {
    color: #8C8073;
    font-size: 16px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    line-height: 28px;
    word-wrap: break-word;
}

/* Contact Section - Tablet */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .contact {
        margin: 155px 0 0;
        padding: 0;
    }

    .contact .image {
        width: 1024px;
        max-width: 100%;
        height: 564px;
        object-fit: cover;
        object-position: center;
    }

    .contact-content {
        width: 902px;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 30px;
        display: inline-flex;
        margin: -180px 60px 60px 60px;
        position: relative;
        z-index: 1;
        box-sizing: border-box;
    }

    .contact-form {
        flex: 1 1 0;
        align-self: stretch;
        width: auto;
    }

    .contact-info-wrapper {
        width: 440px;
    }
}

@media screen and (min-width: 768px) and (max-width: 976px) {
    .contact-content {
        width: calc(100% - 120px);
        margin: -180px 60px 60px 60px;
        padding: 0;
        display: inline-flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 30px;
        box-sizing: border-box;
    }

    .contact-form {
        flex: 1 1 0;
        width: auto;
    }

    .contact-info-wrapper {
        width: auto;
        flex: 0 0 360px;
        max-width: 360px;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .contact-info-panel {
        width: 100%;
    }
}

/* Contact Section - Mobile */
@media screen and (max-width: 767px) {
    .contact {
        margin: 75px 0 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .contact .image {
        width: 100%;
        height: auto;
        min-height: 390px;
        object-fit: cover;
        object-position: center;
        order: 1;
    }

    .contact-content {
        width: 100%;
        flex-direction: column;
        gap: 0;
        display: flex;
        margin: 0;
        padding: 0;
        order: 2;
        box-sizing: border-box;
    }

    /* Make contact-info-wrapper transparent wrapper on mobile */
    .contact-info-wrapper {
        display: contents;
    }

    .contact-form {
        width: 100%;
        padding: 30px;
        background: var(--White, white);
        box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.10);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 15px;
        display: inline-flex;
        flex: none;
        order: 2;
        margin: 0;
        border-radius: 0;
        box-sizing: border-box;
    }

    .contact-info-panel {
        width: 100%;
        padding: 30px;
        background: var(--Moss, #005942);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 30px;
        display: inline-flex;
        order: 1;
        border-radius: 0;
        box-sizing: border-box;
    }

    .contact-info__legal {
        width: 390px;
        max-width: 100%;
        text-align: center;
        order: 3;
        margin: 30px auto 0;
        box-sizing: border-box;
    }
}

/* Footer Section - Desktop */
.footer {
    width: 100%;
    margin: 175px 0 0;
    padding: 0;
    box-sizing: border-box;
}

.footer-logo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Footer Section - Tablet */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .footer {
        margin: 175px 0 0;
    }
}

/* Footer Section - Mobile */
@media screen and (max-width: 767px) {
    .footer {
        margin: 120px 0 0;
    }
}


