        /* General Styles */
        
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            color: #e6ffe6;
            text-align: center;
            width: auto;
            background-color: rgb(1, 69, 1);
            /* CFA green background */
        }
        /* Header Section */
        
        .header {
            background-color: rgb(5, 148, 5);
            color: white;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px;
            border-radius: 8px;
            /* Not fixed, so remove position: flex; */
            width: auto;
            z-index: 1000;
        }
        
        .header-content {
            text-align: center;
            flex-grow: 1;
        }
        
        .header h1 {
            font-size: 1.5em;
            margin: 5px 0;
        }
        
        .header h2 {
            font-size: 1.2em;
            margin: 5px 0;
        }
        
        .logo {
            width: 100px;
            height: auto;
            margin: 5px;
        }
        /* Navigation */
        
        .nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 5px;
        }
        
        .nav a {
            color: white;
            text-decoration: none;
            padding: 8px 15px;
            transition: background-color 0.3s ease;
            background-color: #4CAF50;
            border-radius: 5px;
            font-size: 0.9em;
        }
        
        .nav a:hover {
            background-color: darkgreen;
        }
        /* Container */
        
        .container {
            width: 80%;
            margin: auto;
            color: white;
            background: #015501;
            /* Solid green background */
            padding: 20px;
            margin-top: 10px;
            display: flex;
            flex-wrap: wrap;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            text-align: center;
        }
        
        .image-container {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            border-radius: 10px;
        }
        
        .image-container img {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 5px;
        }
        
        .text-content {
            flex: 1;
            padding-left: 20px;
        }
        /* Footer */
        
        .footer {
            background-color: #ffffff;
            color: black;
            text-align: center;
            padding: 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-radius: 8px;
            width: auto;
            justify-content: center;
        }
