body {
    background: white;
    color: #000;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.contact-section {
    width: 70%;
    max-width: 700px;
    margin: 40px auto;
    padding: 45px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}

.contact-section h2 {
    text-align: center;
    font-size: 24px;
    color: #000;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

label {
    font-weight: 600;
    color: #11151b;
    margin-bottom: 4px;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #11151b;
    border-radius: 2px;
    font-size: 15px;
    transition: border-color 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #11151b;
    outline: none;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.form-row > div {
    flex: 1;
    min-width: 45%;
}

.contact-section button {
    padding: 12px;
    background-color: #11151b;
    color: white;
    border: none;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-section button:hover {
    background-color: #11151b;
}

.privacy-note {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

.captcha {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid #ccc;
    border-top: 3px solid #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
    margin-left: 10px;
    align-self: anchor-center;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}



@media screen and (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
}
