.sticky-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index : 200;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: white;
    color: black;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 80px;
    width: 80px;
}

.nav-links {
    display: flex;
    list-style: none;
    text-decoration : none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 20px 20px;
}

.nav-links li a {
    font-size : 1rem;
    color: black;
    text-decoration: none;
    font-weight : bold;
}

.nav-links li a#active{
	color : #F37221;
}

.nav-links li a:hover{
	color : #F37221;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 30px;
    z-index: 101; /* Assurez-vous que le bouton est au-dessus du menu */
}

.hamburger-line {
    width: 30px;
    height: 3px;
    background-color: black;
    margin: 6px 0;
    transition: 0.4s;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    background-color : #FFF;
}

.text-content {
    flex: 1;
    padding-right: 20px;
    text-align: justify;
}

.text-content p{
	line-height : 1.5em;
}

.image-content img {
    max-width: 100%;
    height: auto;
}

.buttons{
	display : flex;
	justify-content : left;
	align-items : center;
	flex-direction : row;
}

.btn {
    background-color: #4CAF50;
    border: 1px solid #4CAF50;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 10px;
    cursor: pointer;
    border-radius : 5px;
}

.btn:hover{
	border-color : #000;
}

.btn-return {
    background-color: #f44336;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 2px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        display: none;
        z-index: 100;
    }

    .header-content{
    	flex-direction : column;
    }

    .nav-links.active {
        display: flex;
    }
}

body.no-scroll {
    overflow: hidden;
}