.contact-form-section {
    background-color: #0d1c33;
    padding: 80px 0;
}

.contact-form__inner {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-form__title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 42px;
    color: #ffffff;
    margin: 0 0 12px;
    line-height: 1.1;
    text-align: center;
}

.contact-form__subtitle {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #ffffff;
    margin: 0 0 40px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form__row--two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form__field label {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
}

.contact-form__field input,
.contact-form__field textarea {
    background-color: #ffffff;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    padding: 12px 14px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #0d1c33;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
    border-color: #35f0ec;
}

.contact-form__field textarea {
    resize: vertical;
    min-height: 120px;
}


.contact-form__field--checkbox {
    flex-direction: row;
    align-items: flex-start;
}

.contact-form__checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
    cursor: pointer;
}

.contact-form__checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: #35f0ec;
    cursor: pointer;
}

.contact-form__checkbox-label a {
    color: #35f0ec;
}

.contact-form__submit {
    background-color: #0d1c33;
    border: 1px solid #35f0ec;
    color: #35f0ec;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 14px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s;
}

.contact-form__submit:hover {
    background-color: #14294a;
}

.contact-form__thankyou {
    text-align: center;
    padding: 60px 0;
    color: #ffffff;
}

.contact-form__thankyou h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #35f0ec;
    margin-bottom: 12px;
}

.contact-form__thankyou p {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #ffffff;
}

@media (max-width: 560px) {
    .contact-form-section {
        padding: 48px 0;
    }

    .contact-form__title {
        font-size: 24px;
    }

    .contact-form__row--two {
        grid-template-columns: 1fr;
    }
}
