section.banner.contact-information {
    background: #FEFAED;
}

section.banner.contact-information .wrapper {
    /* Inherit from section.township .wrapper if needed */
    display: flex;
    flex-direction: column;
    gap: 60px;
}

section.banner.contact-information .contact-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    gap: 60px;
}

section.banner.contact-information .contact-information-title {
    display: flex;
    flex-direction: column;
    max-width: 864px;
    gap: 24px;
    margin: 0 auto;
    text-align: center;
}

section.banner.contact-information .contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: end;
}

section.banner.contact-information .contact-card-1 {
    order: 0;
    margin: 0 auto;
    max-width: 402.6666px;
    background: var(--Blck, #141311);
    color: white;
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--Gold-2, #DFBD69);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    height: 100%;
    max-height: 501px;
}

section.banner.contact-information .contact-card-2 {
    width: 100%;
    margin: 0 auto;
    max-width: 402.6666px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--Gold-2, #DFBD69);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    height: 100%;
    max-height: 501px;
}

section.banner.contact-information .contact-card-image img {
    order: 0;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
}

section.banner.contact-information .contact-card-title span {
    font-family: "Roboto Condensed";
    font-size: 12px;
    font-weight: 700;
    color: #DFBD69;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

section.banner.contact-information .contact-card-title h3 {
    font-family: "Roboto Condensed";
    font-size: 24px;
    font-weight: 800;
    margin: 0;
}

section.banner.contact-information .contact-card-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

section.banner.contact-information .contact-card-body p {
    color: #FFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

section.banner.contact-information .contact-card-2 .contact-card-body p,
section.banner.contact-information .contact-card-2 .contact-card-title h3 {
    color: #432C07;
}

section.banner.contact-information .cta_btn {
    width: fit-content;
    background: var(--Gold-1, linear-gradient(90deg, #AE8625 0%, #F7EF8A 25%, #D2AC47 75%, #EDC967 100%));
    color: #59421C;
    font-family: 'Roboto Condensed';
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    padding: 11.5px 32px;
    text-align: center;
    text-decoration: none;
    margin-top: 16px;
}

section.banner.contact-information .contact-card-items {
    display: flex;
    gap: 19.5px;
    align-items: center;
}

section.banner.contact-information .contact-card-items img {
    display: flex;
    align-self: center;
    width: 24px;
    object-fit: contain;
    aspect-ratio: 1/1;
}

section.banner.contact-information .contact-card-items a {
    text-decoration: none;
    margin: 0;
    color: var(--Brown, #64635D);
    font-family: "Montserrat";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

/* Responsive styles */
@media screen and (max-width: 1199px) {

    section.banner.contact-information .contact-card-1,
    section.banner.contact-information .contact-card-2 {
        max-width: 80%;
    }

    section.banner.contact-information .contact-cards-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    section.banner.contact-information .contact-card-image {
        order: -1;
    }
}

@media screen and (max-width: 575px) {

    section.banner.contact-information .contact-card-1,
    section.banner.contact-information .contact-card-2 {
        max-width: 403.6666px;
    }
}