.cc-contact-form-wrapper {
    max-width: 640px;
    margin: 40px 0;
    padding: 28px;
    background: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.cc-contact-heading {
    margin: 0 0 8px;
    font-size: 22px;
    color: #1a1a1a;
}
.cc-contact-intro {
    margin: 0 0 22px;
    color: #555;
    font-size: 14px;
}
.cc-contact-form .cc-field {
    margin-bottom: 14px;
}
.cc-contact-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
}
.cc-contact-form input[type="text"],
.cc-contact-form input[type="email"],
.cc-contact-form input[type="tel"],
.cc-contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: inherit;
}
.cc-contact-form textarea {
    resize: vertical;
    min-height: 110px;
}
.cc-contact-form input:focus,
.cc-contact-form textarea:focus {
    border-color: #2271b1;
    outline: none;
    box-shadow: 0 0 0 2px rgba(34,113,177,0.15);
}
.cc-submit-btn {
    background: #2271b1;
    color: #fff;
    padding: 11px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 600;
}
.cc-submit-btn:hover { background: #135e96; }
.cc-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.cc-response {
    margin-top: 14px;
    font-size: 14px;
}
.cc-response.success { color: #155724; }
.cc-response.error { color: #721c24; }
.cc-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
