
        /* Reset and default styles */
        body {
            margin: 0;
            padding: 0;
            background-color: black;
            color: white;
		font-family:Verdana, sans-serif;
            height: 100vh;
            overflow: hidden; /* Prevent body scroll */
        }

        /* Section A - Fixed at top */
        #section-a {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
           /* background-color: #1a2b5f;*/ /* Dark blue for visibility */
            background-color: black;
            z-index: 10; /* Ensure it stays above Section B */
            text-align: center;
        }

        #section-a .content {
            max-width: 1000px;
            margin: 0 auto;
            padding: 10px;
        }

        #section-a img {
            display: block;
            margin: 0 auto;
        }

        #section-a .sousmenus a {
            display: inline-block;
            text-decoration: none;
            color: white; /* Default unless overridden */
        }

        #section-a .phone-content {
            display: none;
            padding: 10px;
        }

        /* Mobile switch at 1000px */
        @media (max-width: 1000px) {
            #section-a .content {
                display: none;
            }
            #section-a .phone-content {
                display: block;
            }
        }

        /* Section B - Scrollable content */
        #section-b {
            margin-top: 0; /* Will be set dynamically by JS */
            height: calc(100vh - 0px); /* Adjusted by JS */
            overflow-y: auto; /* Vertical scrollbar */
            background-color: black; /* Dark gray for visibility */
        }

        #section-b .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }

#section-b .container img {
    max-width: 100%;
    height: auto;
    display: block; /* Optional: This removes extra spacing beneath images caused by inline elements */
    margin: 6px 0; /* Adds 3px above and below the image */
}

        /* Responsive width for Section B */
        @media (max-width: 800px) {
            #section-b .container {
                width: 80%;
                min-width: 300px;
            }
        }

        #section-b #titre {
            font-family: Arial, sans-serif;
            font-size: 24px;
            margin-bottom: 20px;
        }

#section-b #content1 {
    font-family: Verdana, sans-serif;
    font-size: 16px;
    text-align: justify; }


#section-a .phone-content {
    margin: 0; /* Zero margin all around */
    padding: 1px 0 0 1px; /* 1px top, 0 right, 0 bottom, 1px left */
}

#section-a .phone-content table {
    width: 100%;
    border-collapse: collapse; /* Remove gaps between cells */
}

#section-a .phone-content .left-cell {
    width: 30%; /* Adjust as needed */
    padding: 2px;
    vertical-align: top;
    text-align: left;
}

#section-a .phone-content .right-cell {
    width: 70%;
    padding: 10px;
    vertical-align: top;
    text-align: left;
    font-size: 12px; /* Base size for small screens */
}

/* Override for very small screens (phones) */
@media (max-width: 600px) {
    #section-a .phone-content .right-cell {
        font-size: 1rem; /* Scales with root font size, typically 16px on phones */
    }
}
#section-a .phone-content .right-cell a {
    color: white;
    text-decoration: none;
}

#section-a .phone-content .right-cell a:hover {
    text-decoration: underline;
}


.nav-link {
            color: white;
            border-radius: 5px;
            display: inline-block;
            margin-bottom: 1px;
            font-size: 14px; /* Matches typical default */
        }
        .nav-link.black-text {
            color: black;
        }


.zoomable {
  cursor: pointer; /* Shows it’s clickable */
  transition: all 0.3s ease; /* Smooth zoom effect */
}

.fullscreen {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centers it */
    max-width: 100vw;
    max-height: 100vh;
    width: auto;
    height: auto;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    transition: all 0.3s ease;
}



