.gc-contact-form {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    box-sizing: border-box;
}

.gc-field {
    margin-bottom: 18px;
}

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

.gc-required {
    color: #e11d48;
}

.gc-field input,
.gc-field textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 4px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.gc-field input:focus,
.gc-field textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 1px rgba(37,99,235,0.25);
}

.gc-turnstile {
    margin-top: 20px;
}

.gc-turnstile .cf-turnstile {
    display: inline-block;
}

.gc-submit {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.05s ease;
    display: inline-block;
}

.gc-submit:hover {
    background: #1d4ed8;
}

.gc-submit:active {
    transform: scale(0.98);
}

.gc-contact-alert {
    max-width: 640px;
    margin: 0 auto 16px;
    padding: 14px;
    border-radius: 6px;
    font-size: 14px;
}

.gc-contact-success {
    background: #ecfdf3;
    border: 1px solid #22c55e;
    color: #166534;
}

.gc-contact-error {
    background: #fef2f2;
    border: 1px solid #f97373;
    color: #991b1b;
}