body {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Regular.woff2') format('woff2'),
        url('../fonts/OpenSans-Regular.woff') format('woff');
    font-family: 'Open Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    font-family: 'Open Sans', Arial, sans-serif;
}

/* Hero banner */
.hero {
    width: 100%;
    height: 440px;
    position: relative;
    display: flex;
    align-items: end;
    padding: 0 0 2rem 0;
    background: url(../img/about-us/background.png) no-repeat center;
    background-size: cover;
}

.hero h1 {
    margin-bottom: 20px;
    font-size: 60px;
    font-weight: 600;
}

.hero p {
    color: #fff;
    font-size: 20px;
    max-width: 560px;
    margin-bottom: 0;
}

.logo {
    font-weight: bold;
    font-size: 28px;
    color: black;
}

/* Contact section */
.contact-section {
    padding: 60px 0 80px;
    background-color: #fff;
}

.contact-section h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

/* Contact detail cards */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 32px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 18px 22px;
    text-decoration: none;
    color: #1a1a1a;
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    background: #fff;
}

.contact-card:hover {
    box-shadow: 0 8px 24px rgba(28, 110, 164, 0.12);
    transform: translateY(-2px);
    border-color: #F7941D;
    color: #1a1a1a;
}

.contact-card .icon-wrap {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #39C0C0, #1C6EA4);
    color: #fff;
}

.contact-card .icon-wrap svg {
    width: 22px;
    height: 22px;
}

.contact-card .card-text span {
    display: block;
}

.contact-card .card-label {
    font-weight: 700;
    font-size: 17px;
}

.contact-card .card-value {
    color: #555;
    font-size: 16px;
}

/* Address block */
.address-block {
    padding: 8px 0 4px;
}

.address-block h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1a1a1a;
}

.address-block p {
    font-size: 16px;
    color: #555;
    margin-bottom: 0;
    line-height: 1.7;
}

/* Social icons */
.contact-social {
    margin-top: 22px;
    display: flex;
    gap: 14px;
    align-items: center;
}

.contact-social a {
    display: inline-flex;
}

.contact-social img {
    height: 26px;
    width: 26px;
}

/* Form column */
.contact-form-box {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(28, 110, 164, 0.08);
}

.contact-form-box .form-intro {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1a1a1a;
}

.contact-form-box .form-sub {
    font-size: 15px;
    color: #666;
    margin-bottom: 18px;
}

/* ============================================================
   SPV intake wizard (native CSD form — replaces the Typeform)
   ============================================================ */

/* Progress bar */
.wiz-progress {
    height: 6px;
    border-radius: 6px;
    background: #eef2f5;
    overflow: hidden;
    margin-bottom: 8px;
}

.wiz-progress-bar {
    height: 100%;
    width: 20%;
    border-radius: 6px;
    background: linear-gradient(135deg, #39C0C0, #1C6EA4);
    transition: width 0.3s ease;
}

.wiz-step-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1C6EA4;
    margin-bottom: 18px;
}

/* Steps: only the active one is shown */
.wiz-step {
    border: 0;
    padding: 0;
    margin: 0;
    display: none;
}

.wiz-step.is-active {
    display: block;
}

.wiz-q {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    padding: 0;
    border: 0;
    width: auto;
}

.wiz-field-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 16px 0 6px;
}

.wiz-field-label em {
    font-weight: 400;
    font-style: italic;
    color: #888;
}

/* Text / number / date / textarea inputs */
.wiz-step input[type="text"],
.wiz-step input[type="email"],
.wiz-step input[type="tel"],
.wiz-step input[type="number"],
.wiz-step input[type="date"],
.wiz-step select,
.wiz-step textarea {
    width: 100%;
    padding: 11px 14px;
    font-size: 15px;
    border: 1px solid #d5dde3;
    border-radius: 8px;
    background: #fff;
    color: #1a1a1a;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wiz-step textarea {
    min-height: 84px;
    resize: vertical;
}

/* Native select — custom chevron, consistent height with text inputs */
.wiz-step select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 40px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231C6EA4' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.wiz-step input:focus,
.wiz-step select:focus,
.wiz-step textarea:focus {
    outline: none;
    border-color: #F7941D;
    box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.15);
}

/* Radio option cards */
.wiz-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 6px;
}

.wiz-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid #d5dde3;
    border-radius: 10px;
    padding: 13px 16px;
    cursor: pointer;
    margin: 0;
    font-size: 15px;
    color: #1a1a1a;
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.wiz-option:hover {
    border-color: #39C0C0;
    background: #f7fcfc;
}

.wiz-option input[type="radio"] {
    margin-top: 3px;
    accent-color: #1C6EA4;
    flex: 0 0 auto;
}

.wiz-option em {
    font-style: normal;
    color: #1C6EA4;
    font-weight: 600;
}

.wiz-option.is-selected {
    border-color: #1C6EA4;
    background: #eef7fb;
    box-shadow: 0 0 0 1px #1C6EA4 inset;
}

/* Conditional branch blocks */
.wiz-branch {
    border-left: 3px solid #39C0C0;
    padding-left: 14px;
    margin: 10px 0 4px;
}

.wiz-note {
    font-size: 13px;
    color: #666;
    background: #f7fcfc;
    border: 1px dashed #cfe4e4;
    border-radius: 8px;
    padding: 10px 12px;
    margin-top: 14px;
}

/* First name / last name row */
.form-column-1 {
    display: flex;
    gap: 14px;
}

.form-column-1 > div {
    flex: 1;
}

/* Consent */
.wiz-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.wiz-consent input[type="checkbox"] {
    margin-top: 3px;
    accent-color: #1C6EA4;
    flex: 0 0 auto;
}

.wiz-consent a {
    color: #1C6EA4;
    font-weight: 600;
    text-decoration: underline;
}

/* Honeypot — visually hidden, still submitted; bots that fill it are caught */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Inline error / status */
.wiz-error {
    color: #c0392b;
    background: #fdecea;
    border: 1px solid #f5c6c0;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
    margin: 16px 0 0;
}

/* Navigation buttons */
.wiz-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.wiz-btn {
    border: 0;
    border-radius: 8px;
    padding: 12px 26px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.wiz-next,
.wiz-submit {
    background: linear-gradient(135deg, #39C0C0, #1C6EA4);
    color: #fff;
    margin-left: auto;
}

.wiz-next:hover,
.wiz-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(28, 110, 164, 0.25);
}

.wiz-submit[disabled] {
    opacity: 0.6;
    cursor: default;
    transform: none;
    box-shadow: none;
}

.wiz-back {
    background: #fff;
    color: #1C6EA4;
    border: 1px solid #cfe0ea;
}

.wiz-back:hover {
    background: #f2f8fb;
}

/* ============================================================
   Simple contact form (contact.html)
   ============================================================ */

.sf-field {
    margin-bottom: 14px;
}

.sf-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.sf-row {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}

.sf-row .sf-field {
    flex: 1;
    margin-bottom: 0;
}

#simple-contact-form input[type="text"],
#simple-contact-form input[type="email"],
#simple-contact-form input[type="tel"],
#simple-contact-form select,
#simple-contact-form textarea {
    width: 100%;
    padding: 11px 14px;
    font-size: 15px;
    border: 1px solid #d5dde3;
    border-radius: 8px;
    background: #fff;
    color: #1a1a1a;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#simple-contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

#simple-contact-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 40px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231C6EA4' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

#simple-contact-form input:focus,
#simple-contact-form select:focus,
#simple-contact-form textarea:focus {
    outline: none;
    border-color: #F7941D;
    box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.15);
}

@media (max-width: 767.9px) {
    .sf-row {
        flex-direction: column;
        gap: 0;
    }

    .sf-row .sf-field {
        margin-bottom: 14px;
    }
}

@media (max-width: 991.9px) {
    .hero h1 {
        font-size: 44px;
    }

    .contact-form-box {
        margin-top: 40px;
    }

    .contact-section h2 {
        font-size: 28px;
    }
}

@media (max-width: 767.9px) {
    .hero {
        height: 320px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 15px;
    }

    .contact-card .card-label {
        font-size: 15px;
    }

    .contact-card .card-value {
        font-size: 14px;
    }

    .form-column-1 {
        flex-direction: column;
        gap: 0;
    }

    .wiz-nav {
        flex-wrap: wrap;
    }
}
