body{
    background-color: #ffffff;
}

/* Form Container */
.contact-form {
    max-width: 700px;
    margin: 60px auto;
    padding: 50px 40px;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Heading */
.contact-form h2 {
    text-align: center;
    color: #222;
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 700;
}

/* Labels */
.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 15px;
}

/* Input Fields */
.cf-input-name,
.cf-input-email,
.cf-input-subject,
.cf-textarea-message {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    border: 1px solid #d1d1d1;
    border-radius: 10px;
    background-color: #fdfdfd;
    transition: all 0.3s ease-in-out;
    box-sizing: border-box;
}

.cf-input-name:focus,
.cf-input-email:focus,
.cf-input-subject:focus,
.cf-textarea-message:focus {
    border-color: #0073aa;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
    outline: none;
}

/* Textarea */
.cf-textarea-message {
    resize: vertical;
    min-height: 150px;
}

/* Group */
.cf-form-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Button */
.cf-submit-button {
    background-color: #0073aa;
    color: white;
    padding: 16px;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    letter-spacing: 0.5px;
}

.cf-submit-button:hover {
    background-color: #005f8d;
}

/* Messages */
.cf-success,
.cf-error {
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
}

.cf-success {
    background-color: #e8f5e9;
    border-left: 5px solid #43a047;
    color: #2e7d32;
}

.cf-error {
    background-color: #fdecea;
    border-left: 5px solid #e74c3c;
    color: #c0392b;
}

/* Recaptcha */
.cf-recaptcha-wrapper {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

/* Responsive Typography */
@media (max-width: 480px) {
    .contact-form {
        padding: 30px 20px;
    }

    .contact-form h2 {
        font-size: 24px;
    }

    .cf-input-name,
    .cf-input-email,
    .cf-input-subject,
    .cf-textarea-message {
        font-size: 15px;
    }

    .cf-submit-button {
        font-size: 16px;
    }
}