.ccf-styled-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.ccf-styled-form h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #333;
}

.ccf-description {
    text-align: center;
    margin-bottom: 20px;
    color: #555;
}

.ccf-field {
    margin-bottom: 15px;
}

.ccf-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.ccf-field input,
.ccf-field textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #ffffff !important;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.ccf-field input:focus,
.ccf-field textarea:focus {
    border-color: #0073aa;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.2);
}

.ccf-field textarea {
    resize: vertical;
    min-height: 120px;
}

.ccf-submit-btn {
    width: 100%;
    padding: 12px;
    background: #0073aa;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.ccf-submit-btn:hover {
    background: #005f8d;
}

.ccf-response {
    margin-top: 15px;
    text-align: center;
    font-weight: 600;
}

.ccf-response.success {
    color: green;
}

.ccf-response.error {
    color: red;
}

/* Responsive */
@media (max-width: 600px) {
    .ccf-styled-form {
        padding: 20px;
    }
}
