/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #3b2f2f;
    background-color: #fffefc;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header avec titre + lien retour */
header {
    background-color: #fdebb9;
    border-bottom: 1px solid #c28840;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #3b2f2f;
    font-weight: 700;
    font-size: 1.5rem;
}

header a {
    text-decoration: none;
    color: #a05a2c;
    font-weight: 600;
    border: 2px solid transparent;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

header a:hover {
    background-color: #a05a2c;
    color: #fffefc;
}

/* Section principale */
.support-form-section {
    flex-grow: 1;
    max-width: 600px;
    margin: 40px auto 2rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(194, 165, 90, 0.2);
}

.centered {
    text-align: center;
    margin-bottom: 2rem;
    color: #3b2f2f;
}

.support-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #3b2f2f;
}

.support-form input[type="text"],
.support-form input[type="email"],
.support-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 1.5rem;
    border: 2px solid #f2c94c;
    border-radius: 6px;
    font-size: 1rem;
    resize: vertical;
    color: #3b2f2f;
    background-color: #fffefc;
    transition: border-color 0.3s ease;
}

.support-form input[type="text"]:focus,
.support-form input[type="email"]:focus,
.support-form textarea:focus {
    border-color: #c28840;
    outline: none;
}

.support-form button.button {
    background-color: #f2c94c;
    color: #3b2f2f;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.support-form button.button:hover {
    background-color: #c28840;
}

/* Footer */
footer {
    background-color: #8b5e3c;
    color: #fff;
    padding: 3rem 1rem;
    margin-top: auto;
}

.footer-widgets {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.widget {
    flex: 1;
    min-width: 200px;
}

footer h5 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

footer p,
.widget ul li a {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #fff;
}

.widget ul li {
    border-bottom: 1px solid #cfa97a;
    padding: 0.5rem 0;
}

.widget ul li:last-child {
    border-bottom: none;
}

.footer-bottom {
    text-align: center;
    font-size: 0.75rem;
    margin-top: 2rem;
    color: #d9c9a5;
}