body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
    background: url('../PICTURES/Background_01.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

body::after {
    content: '';
    position: fixed; /* Use fixed positioning */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit; /* Inherit background image */
    filter: blur(8px); /* Apply blur effect */
    z-index: -1; /* Ensure the blur effect is behind the content */
}

    
        header {
            background: rgb(4, 42, 67);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
    
        header .logo {
            display: flex;
            align-items: center;
        }
    
        header .logo img {
            height: 60px;
            margin-right: 15px;
        }
    
        header .logo span {
            font-size: 30px;
            font-weight: bold;
            color: #fff;
        }
    
        nav {
            display: flex;
            gap: 20px;
        }
    
        nav a {
            color: #fff;
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            transition: color 0.3s ease;
        }
    
        nav a:hover {
            color: #333;
        }
    
        main {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
        }
    
        .info-section {
            background: rgb(4, 42, 67);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            margin: 20px;
            max-width: 800px;
            color: #d1e7ff;
            font-size: 18px;
            font-weight: bold;
            display: none;
        }
    
        .info-section.active {
            display: block;
        }
    
        .info-section h2 {
            text-align: center;
            color: #fff;
            font-size: 28px;
        }
    
        .info-section h3 {
            margin-top: 20px;
            color: #6fc5ff;
        }
    
        .info-section p, .info-section ul {
            margin-top: 10px;
        }
    
        .info-section ul {
            list-style-type: disc;
            padding-left: 20px;
        }
    
        ul li {
            margin: 5px 0;
        }
    
        .language-buttons {
            margin: 20px;
            display: flex;
            gap: 15px; /* Increased gap for better spacing */
        }
    
        .language-buttons button {
            padding: 20px 40px; /* Increased padding for larger buttons */
            font-size: 22px; /* Larger font size */
            font-weight: bold;
            color: #fff;
            background-color: #0f3a56;
            border: 2px solid #fff; /* Added white border */
            border-radius: 8px; /* Slightly rounded corners */
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth hover effects */
        }
    
        .language-buttons button:hover {
            background-color: #4a9cd3;
            transform: scale(1.05); /* Slight scaling effect on hover */
        }
    
        /* Responsive styles */
        @media (max-width: 768px) {
            header {
                flex-direction: column;
                align-items: center;
                padding: 15px;
            }
    
            header .logo img {
                height: 50px;
                margin-right: 10px;
            }
    
            header .logo span {
                font-size: 24px;
            }
    
            nav {
                flex-direction: column;
                gap: 10px;
                align-items: center;
            }
    
            nav a {
                font-size: 16px;
            }
    
            .info-section {
                padding: 20px;
                font-size: 16px;
                max-width: 95%;
            }
    
            .language-buttons button {
                padding: 18px 35px; /* Slightly reduced padding for tablets */
                font-size: 20px;
            }
        }
    
        @media (max-width: 480px) {
            header {
    background: rgb(4, 42, 67);
    padding: 20px;
    display: flex;
    justify-content: center; /* Center the logo and navigation */
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%; /* Ensure the header spans the full width */
    box-sizing: border-box; /* Include padding in the width calculation */
}


            header .logo {
                margin-bottom: 10px; /* Add space between the logo section and the menu */
            }

            header .logo img {
                height: 30px; /* Smaller logo for mobile view */
                margin-right: 10px;
            }

            header .logo span {
                font-size: 20px; /* Smaller font size to fit in one line */
                white-space: nowrap; /* Prevent text wrapping */
            }

            nav {
        flex-direction: column;
        align-items: center;
        gap: 10px; /* Space between menu items */
    }

    nav a {
        display: inline-block; /* Ensure the links behave like buttons */
        font-size: 14px; /* Adjust font size for mobile view */
        color: #fff; /* Text color */
        text-decoration: none; /* Remove underline */
        background-color: rgba(111, 197, 255, 0.35); /* Button background color */
        padding: 10px 0; /* Add vertical padding for a consistent appearance */
        width: 150px; /* Set a fixed width for all buttons */
        text-align: center; /* Center-align the text */
        border: 2px solid #6fc5ff; /* Add a border matching the background color */
        border-radius: 5px; /* Rounded corners for buttons */
        transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    }

    nav a:hover {
        background-color: rgb(91, 177, 230); /* Slightly darker shade on hover */
        border-color: #5bb0e6; /* Match border color with hover background */
        transform: scale(1.05); /* Slight scaling effect */
    }

    nav a:active {
        background-color: #4a9bcc; /* Even darker shade when clicked */
        border-color: #4a9bcc;
    }
            .info-section {
                font-size: 14px;
            }
    
            .language-buttons button {
                padding: 15px 30px; /* Further reduced padding for smaller screens */
                font-size: 18px;
            }
        }