/* css/contact-style.css */
.contact-form-container {
    max-width: 700px;
    margin: 2rem 0;
}

.contact-form-container label {
    display: block;
    margin-top: 1rem;
    font-weight: 500;
    color: #2b5e3b;
}

.contact-form-container input,
.contact-form-container textarea {
    width: 100%;
    padding: 0.7rem;
    margin-top: 0.3rem;
    border: 1px solid #cfddcd;
    border-radius: 12px;
    font-family: inherit;
    background: white;
}

.contact-form-container input:focus,
.contact-form-container textarea:focus {
    outline: none;
    border-color: #3a6b4b;
    box-shadow: 0 0 0 2px rgba(58, 107, 75, 0.2);
}

.privacy-note {
    font-size: 0.8rem;
    margin: 1rem 0;
    color: #5a6e6b;
}

.submit-btn {
    background: #3a6b4b;
    color: white;
    border: none;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    border-radius: 40px;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-btn:hover {
    background: #2b5e3b;
}