/* Contact Form 7 */
.wpcf7 h3 {
    font-weight: 700;
    margin-top: 30px;
}

.wpcf7 label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
}

.wpcf7 input,
.wpcf7 textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
}

.wpcf7 textarea {
    min-height: 150px;
    resize: vertical;
}

.wpcf7 input[type="submit"] {
    background: #588f27;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background-color .2s ease;
}

.wpcf7 input[type="submit"]:hover {
    background: #278f2a;
}

.wpcf7 input[type="submit"]:focus {
    outline: 2px solid #278f2a;
    outline-offset: 2px;
}

.wpcf7 input[type="submit"]:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.wpcf7 select {
    width: 100%;
    padding: 10px 12px;
    font: inherit;
    color: #333;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wpcf7 select:hover {
    border-color: #999;
}

.wpcf7 select:focus {
    outline: none;
    border-color: #588f27;
    box-shadow: 0 0 0 3px rgba(88, 143, 39, 0.15);
}

.wpcf7 .cf-turnstile {
    margin-top: 30px;
}

.wpcf7 .cf-form-note {
    font-size: 0.9em;
    color: #666;
}