* {
    box-sizing: border-box;
    text-decoration: None;
}

body {
    font-size: 14px;
    font-family: Merriweather;
}

.page {
    background: rgba(255, 255, 255, 1);
    opacity: 1;
    overflow: hidden;
}

.pages {
    display: flex;
    flex-direction: column; /* Stack pages vertically */
    align-items: center;    /* Center each page horizontally */
    padding: 20px;
    gap: 20px;              /* Space between pages */
    background-color: #DDDDDD;
}

.page_doc {
    width: 80%;             /* Responsive width, adjust as needed */
    max-width: 800px;       /* Limit maximum width */
    aspect-ratio: 8.5 / 11; /* Maintain document page aspect ratio */
    background-size: cover; /* Ensure the image fills the container */
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin: 0 auto;         /* Center the page horizontally */
}

.landscape {
    height: auto; /* Landscape document aspect ratio */
    width: 80%;             /* Adjust width for better fit */
    max-width: 800px;      /* Larger max-width for landscape pages */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin: 0 auto;
}

/* Specific page backgrounds */
#p_1 { background-image: url("../../images/statut/site_page-0001.png"); }
#p_2 { background-image: url("../../images/statut/site_page-0002.png"); }
#p_3 { background-image: url("../../images/statut/site_page-0003.png"); }
#p_4 { background-image: url("../../images/statut/site_page-0004.png"); }
#p_5 { background-image: url("../../images/statut/site_page-0005.png"); }
#p_6 { background-image: url("../../images/statut/site_page-0006.png"); }
/* #p_7 { background-image: url("../../images/statut/mentions_legales.png"); } */
/* #p_8 { background-image: url("../../images/statut/nous_contacter.png"); } */
#p_7 {
    background-color: white;
    padding: 2% 5%;
}

h1, h2, p {
    text-align: center;
    color: rgba(0, 38, 84, 1);
}