/* Global form container */
.wpcf7 {
    margin: 0 auto;
    padding: 2em;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    font-family: 'Mulish', sans-serif;
    color: #000000;
}

/* Headings inside the form */
.wpcf7 p strong {
    display: block;
    margin: 1.5em 0 0.5em;
    font-size: 1.1em;
    color: #333;
}

.wpcf7 label {
    margin: 0;
}

/* Text fields and textarea */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
    width: 100%;
    padding: 0.75em;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 1em;
    background: #fdfdfd;
    transition: border-color 0.2s;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus {
    border-color: #d2ffbb;
    outline: none;
}

/* Radio and checkbox wrappers */
.wpcf7 .wpcf7-radio,
.wpcf7 .wpcf7-checkbox {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1em;
}

.wpcf7 .wpcf7-list-item {
    display: inline-block;
    border: 1px solid #000000;
    padding: 8px 12px;
    border-radius: 6px;
    background: #f8f8f8;
    cursor: pointer;
    transition: background 0.2s, border 0.2s;
}

.wpcf7 .wpcf7-list-item:hover {
    background: #eef3ff;
    border-color: #e3ffd7;
}

.wpcf7 input[type="radio"],
.wpcf7 input[type="checkbox"] {
    margin-right: 8px;
    transform: scale(1.1);
}

/* Submit button */
.wpcf7 input[type="submit"] {
    display: inline-block;
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 0.75em 2em;
    border-radius: 6px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 1.5em;
}

.wpcf7 input[type="submit"]:hover {
    background: #74a26c;
}

/* Validation errors */
.wpcf7 .wpcf7-not-valid-tip {
    color: #d9534f;
    font-size: 1.3em;
    margin-top: -0.5em;
    margin-bottom: 1em;
}

/* Divider between sections (optional) */
.wpcf7 form hr {
    border: none;
    min-width: 100%;
    height: 1px;
    background: #e0e0e0;
    margin: 2em 0;
}
