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

body {
    font-family: Georgia, 'Times New Roman', serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}


.conteneur {
    width: 1024px;
    margin: 0 auto;
    background-color: #fff;
    min-height: 100vh;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding-bottom: 60px;
}


.entete {
    width: 100%;
    height: 120px;
    background-image: url('./../images/landscape-5288678_960x280.png');
    background-size: cover;
    text-align: center;
    position: relative;
}

.entete h1 {
    font-weight: bold;
    color: #582929;
    font-size: 28px;
    padding-top: 45px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}



.menu ul {
    list-style: none;
}

.menu ul li {
    margin: 0;
}

.menu ul li a {
    display: block;
    padding: 15px 20px;
    color: #333;
    font-size: 16px;
    font-weight: bold;
    border-bottom: none;
    transition: background-color 0.3s;
    text-transform: uppercase;
    text-align: center;
}

.menu ul li a:hover {
    background-color: #e8e8c8;
}

.menu ul li a.actif {
    background-color: #e8e8c8;
}


.zone-contenu {
    padding: 20px;
    font-size: 0;
    display: table;
}

.menu {
    width: 180px;
    display: table-cell;
    vertical-align: top;
    font-size: 16px;
}

.menu-interne {
    position: sticky;
    top: 20px;
    background-color: #f5f5dc;
    padding: 20px 0;
    z-index: 1000;
    border: 1px solid #ddd;
}

.contenu-principal {
    display: table-cell;
    vertical-align: top;
    width: calc(100% - 200px);
    padding: 10px 30px 30px 30px;
    min-height: 600px;
    font-size: 16px;
}


.grille-sections {
    width: 100%;
    padding: 20px 0;
    font-size: 0;
    text-align: center;
}

.grille-sections::after {
    content: "";
    display: table;
    clear: both;
}

.boite-section {
    width: 200px;
    height: 200px;
    display: inline-block;
    vertical-align: top;
    margin: 20px 30px;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 16px;
}

.boite-section:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.boite-section .superposition {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    display: table;
}

.boite-section .contenu {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding: 15px;
}

.boite-section h3 {
    color: #333;
    font-size: 18px;
    margin-bottom: 8px;
    text-shadow: none;
}

.boite-section p {
    color: #333;
    font-size: 12px;
    line-height: 1.4;
}


.section-rapport {
    background-color: #f8b4b4;
}

.section-interview {
    background-color: #90ee90;
}

.section-parcours {
    background-color: #f0e68c;
}

.section-conclusion {
    background-color: #87ceeb;
}


.titre-page {
    font-size: 32px;
    color: #2c3e50;
    border-bottom: 3px solid #3498db;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.contenu-page {
    font-size: 16px;
    line-height: 1.8;
}

.contenu-page h2 {
    font-size: 24px;
    color: #34495e;
    margin: 30px 0 15px 0;
    padding-left: 15px;
    border-left: 4px solid #3498db;
}

.contenu-page h3 {
    font-size: 20px;
    color: #7f8c8d;
    margin: 20px 0 10px 0;
}

.contenu-page p {
    margin-bottom: 15px;
    text-align: justify;
}

.contenu-page ul {
    margin: 15px 0 15px 40px;
}

.contenu-page ul li {
    margin-bottom: 8px;
}


.intro-interview {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 5px solid #3498db;
}

.question {
    background-color: #e8f4fd;
    padding: 15px 20px;
    margin: 20px 0 10px 0;
    border-radius: 8px;
    font-weight: bold;
    color: #2980b9;
    font-size: 18px;
}

.question::before {
    content: "Q: ";
    color: #e74c3c;
    font-weight: bold;
}

.reponse {
    background-color: #f0f0f0;
    padding: 15px 20px;
    margin: 0 0 20px 30px;
    border-radius: 8px;
    color: #333;
    font-style: italic;
    border-left: 4px solid #27ae60;
}

.reponse::before {
    content: "R: ";
    color: #27ae60;
    font-weight: bold;
    font-style: normal;
}


.pied-de-page {
    width: 100%;
    background-color: #8b7355;
    color: #fff;
    text-align: center;
    padding: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.pied-de-page p {
    font-size: 14px;
}


.retour-haut {
    display: inline-block;
    margin: 30px 0;
    padding: 10px 20px;
    background-color: #3498db;
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
}

.retour-haut:hover {
    background-color: #2980b9;
}





.tableau-donnees {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.tableau-donnees th,
.tableau-donnees td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.tableau-donnees th {
    background-color: #3498db;
    color: #fff;
}

.tableau-donnees tr:nth-child(even) {
    background-color: #f8f9fa;
}

.tableau-donnees tr:hover {
    background-color: #e8f4fd;
}


.liste-stylee {
    list-style: none;
    margin: 20px 0;
}

.liste-stylee li {
    padding: 10px 15px;
    margin-bottom: 8px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.liste-stylee li:hover {
    background-color: #e8f4fd;
}


.boite-info {
    background-color: #e8f4fd;
    border: 1px solid #3498db;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.boite-attention {
    background-color: #fdf2e9;
    border: 1px solid #e67e22;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.boite-succes {
    background-color: #e8f8f0;
    border: 1px solid #27ae60;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}