html, body {
    height: 100%;
    width: 100%;
	font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.page-wrapper {
    height: 100vh; 
    width: 100vw;
    display: flex;
    flex-direction: column;
}
body, h1 {
    margin: 0;
    color: white;
    font-weight: bold;
    font-size: 1.4vw;
}
/* HEADER IDENTIQUE À INDEX.CSS */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    background: #112142;
    position: fixed;
    top: 0;
    z-index: 999;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 50px;
    margin-right: 10px;
	margin-left: 25px;

}

.logo {
    font-size: 17px;
    font-weight: bold;
    color: white;
}



.nav {
    display: flex;
    gap: 80px;
    margin-right: 25px;
}

.nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 15px;
}

.nav a:hover {
    color: #FF9411;
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    z-index: 1000;
    margin-right: 25px;
}

@media (max-width: 1024px) {
    .nav {
        position: absolute;
        top: 70px;
        right: 0;
        background-color: rgba(17,33,66,0.98);
        flex-direction: column;
        align-items: flex-end;
        padding: 20px;
        gap: 40px;
        border-radius: 10px;
        display: none;
    }
    .nav.show {
        display: flex;
    }
    .hamburger {
        display: block;
    }
    .logo-container img {
        height: 35px;
    }
    .logo {
        font-size: 13px;
    }
}

/* Décalage du contenu sous le header */
.main-container {
    margin-top: 140px !important;
}

.logo-container {
    text-decoration: none;
    color: inherit;
}

.main-container {
    flex-grow: 1;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    margin-top: 140px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.main-container h2 {
    color: #FFA500;
    font-size: 25px;
    margin-top: 0;
}

.main-container h3 {
    color: #011355  ;
    margin-top: 0;
    font-size: 22px;

}

.main-container p, .main-container ul {
    line-height: 1.6;
    font-size: 20px;

    color: #333;
}

.main-container ul {
    padding-left: 20px;
}


.privacy-link {
    color: #FFA500;
    text-decoration: none; 
}

.privacy-link:hover, .privacy-link:focus {
    text-decoration: underline; 
    color: #0146F2; 
}





.hamburger-menu{
    display: none;
}

@media (max-width: 768px) {
    .main-nav .nav-link {
        font-size: 13px!important;  
        padding: 10px 5px; 
    }
    
    html, body {
        overflow: auto;  
        height: auto;  
        overflow-x: hidden;
    }

    .header-container img.logo {
        width: 40px; 
    }

    .logo-and-title h1 {
        font-size: 18px; 
    }

    #main-title {
        font-size: 42px;  
        margin: 10px 0; 
    }

    .main-nav {
        display: none; 
        flex-direction: column;
        position: fixed;  
        top: 80px;  
        margin: 0 10px;  
        border-radius: 20px;
        left: 0; 
        right: 0; 
        background-color: #1d2b5e;
        width: calc(100% - 20px); 
        box-shadow: 0 8px 16px rgba(0,0,0,0.15);  
        z-index: 999;  
    }
    .main-nav.is-active {
        display: flex; 
    }

    .hamburger-menu {
        display: block;  
        cursor: pointer;
        z-index: 1000;  
    }
}