.contact-form-section {
    padding: 64px 0;
    background: #020015;
}

.contact-form-container {
    max-width: 999px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}

.contact-form-container .section-title-center {
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 90px;
}

.contact-form-container .section-subtitle-center {
    font-size: 24px;
    margin-bottom: 40px;
    line-height: 30px;
}

.contact-form-wrap {
    max-width: 480px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: white;
    line-height: 20px;
}

.form-group input,
.form-group textarea {
    background: #150639;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    padding: 12px 16px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: white;
    outline: none;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    line-height: 24px;
    width: 100%;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #858585;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}


.form-checkbox {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 1px solid #d0d5dd;
    background: white;
    appearance: none;
    -webkit-appearance: none;
    flex-shrink: 0;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"]:checked {
    background: #8746eb;
    border-color: #8746eb;
}

.form-checkbox label {
    font-family: 'Fredoka', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: white;
    line-height: 24px;
    cursor: pointer;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #ef4444;
}

.contact-success {
    text-align: center;
    padding: 64px 0;
}

.contact-success h3 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 32px;
    color: white;
    margin: 0 0 16px;
}

.contact-success p {
    font-family: 'Fredoka', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: white;
    margin: 0;
}

.btn-full {
    margin-top: 16px;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .contact-form-container .section-title-center {
        font-size: 36px;
        line-height: normal;
    }

    .contact-form-container .section-subtitle-center {
        font-size: 16px;
    }
}
