.contact-form-container {
    padding: 30px;
    border-radius: 12px;
    max-width: 600px;
    margin: 20px auto;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

.cf-hp-field {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
}

.contact-form-group {
    margin-bottom: 20px;
}

.contact-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e293b;
    font-size: 0.95rem;
}

.contact-form-group label .required {
    color: #dc2626;
}

.contact-form-input,
.contact-form-textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    font-size: 0.95rem;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
    border-color: #2563eb;
    background: #ffffff;
}

.contact-form-submit-btn {
    width: 100%;
    padding: 12px 20px;
    border-radius: 8px;
    background: #2563eb;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.contact-form-submit-btn:hover {
    background: #1d4ed8;
}

.contact-form-alert {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-form-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.contact-form-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.contact-form-turnstile {
    min-height: 65px;
}