#contact-hero {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 120px 42px 42px 42px;
    color: var(--medTextGrey);
    gap: 40px;
}

.contact-content {
    flex: 1;
    max-width: 400px;
}

.contact-content h1 {
    margin-bottom: 16px;
    color: var(--newBlack);
}

.contact-content p {
    font-size: 20px;
    color: var(--medTextGrey);
}

.contact-form {
    flex: 2;
    max-width: 600px;
    background: var(--offWhite);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--cardShadow__INSET_ONLY);
}

/* Terms Section Styling */
#terms-section {
    padding: 60px 42px;
    background: var(--softGrey);
}

.terms-container {
    max-width: 1200px;
    margin: 0 auto;
}

.terms-container h2 {
    font-size: 32px;
    color: var(--newBlack);
    margin-bottom: 40px;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.terms-block {
    background: var(--offWhite);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--cardShadow__INSET_ONLY);
}

.terms-block h3 {
    font-size: 20px;
    color: var(--newBlack);
    margin-bottom: 16px;
}

.terms-block p {
    font-size: 16px;
    color: var(--medTextGrey);
    line-height: 1.5;
}

.privacy-notice {
    background: var(--conicBG__light);
    padding: 32px;
    border-radius: 12px;
    margin-top: 40px;
    box-shadow: var(--cardShadow__INSET_ONLY);
}

.privacy-notice h3 {
    font-size: 24px;
    color: var(--newBlack);
    margin-bottom: 16px;
}

.privacy-notice p {
    font-size: 16px;
    color: var(--medTextGrey);
    line-height: 1.6;
}

#contact-hero contact-footer::part(contact-footer-graphic) {
    display: none !important;
}

/* Responsive Design */
@media (max-width: 1100px) {
    #contact-hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 100px 24px 42px 24px;
    }

    .contact-content {
        max-width: 100%;
    }

    .contact-form {
        width: 100%;
        max-width: 100%;
    }

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

    .terms-container {
        padding: 0;
    }
}

