.bodynous {
    min-height: 100vh;
    background: #747474;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px 80px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.page-title {
    font-size: 2.2rem;
    color: white;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Courier New', Courier, monospace;
}

.page-subtitle {
    color: #ffffffcc;
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.95rem;
    font-family: 'Courier New', Courier, monospace;
}

.formulaire-container {
    width: 90%;
    max-width: 860px;
    margin: 0 auto 100px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
}

.formulaire-container iframe {
    display: block;
    width: 100%;
    border: none;
}



/* MOBILE */
@media (max-width: 768px) {
    .bodynous {
        background-attachment: scroll;
        padding: 70px 16px 80px;
    }

    .page-title {
        font-size: 1.5rem;
        margin-top: 70px;
    }

    .formulaire-container {
        width: 100%;
    }

    .formulaire-container iframe {
        height: 600px;
    }
}