        /* General Styles */
        body {
            margin: 0;
            padding: 0;
            font-family: 'Roboto', sans-serif;
            background-color: #f5f5f5;
            color: #333;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            overflow: hidden; /* Disable scrolling */
        }

        /* Header Styles */
        .header {
            width: 100%;
            background-color: #003366;
            padding: 10px; /* Reduced padding */
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: #fff;
        }

        .logo-container {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo {
            height: 40px; /* Adjust logo size */
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.1);
        }

        .company-name {
            color: #ffffff;
            margin-left: 10px; /* Adjust margin for logo */
            font-size: 20px; /* Adjust font size for company name */
            font-weight: 700;
        }

        .nav {
            display: flex;
            align-items: center;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav li {
            margin-left: 20px; /* Adjust spacing */
        }

        .nav li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 16px; /* Adjust font size */
            transition: color 0.3s ease;
        }

        .nav li a:hover {
            color: #00c6ff;
        }

        /* Container Styles */
        .container {
            max-width: 100%; /* Full width */
            margin: 80px auto 20px; /* Adjust top margin to avoid overlap with header */
            padding: 40px;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            overflow-y: auto; /* Enable scrolling within the container if needed */
            height: calc(100vh - 80px); /* Adjust height to fit the viewport */
        }

        h1 {
            text-align: center;
            color: #003366;
            margin-bottom: 20px;
            font-size: 32px; /* Adjust heading size */
            font-weight: 700;
        }

        .opening-hours {
            text-align: center;
            font-size: 18px; /* Adjust font size */
            color: #003366;
            margin-bottom: 40px;
            font-weight: 500;
        }

        .row {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .left-container, .right-container {
            flex: 1;
            margin: 10px; /* Adjust margin for spacing */
        }

        .section {
            margin-bottom: 20px; /* Adjust margin */
            padding: 20px;
            border: 2px solid #003366;
            border-radius: 8px;
            background-color: #e8f0fe;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .section:hover {
            background-color: #d0e4ff;
            transform: translateY(-4px);
        }

        .icon {
            color: #003366;
            margin-right: 10px;
            font-size: 24px; /* Adjust icon size */
        }

        .logito {
            display: block;
            margin: 0 auto 30px;
            max-width: 200px; /* Increase size of the logo */
        }

        .footer-section {
            text-align: center;
            margin-top: 30px;
            padding: 20px;
            background-color: #003366;
            color: #ffffff;
            border-radius: 8px;
            border: 1px solid #002a53;
        }

        .footer-section h2 {
            margin-bottom: 10px;
        }

        .footer-section p a {
            margin: 0 10px;
        }

        /* Social Media Grid */
        .social-media {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .social-media div {
            background: #ffffff;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .social-media div:hover {
            background-color: #f0f8ff;
            transform: translateY(-4px);
        }

        /* Footer Bar */
        #footer-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #002a53;
            color: #ffffff;
            text-align: center;
            padding: 15px 0;
            font-size: 14px;
        }


        /* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .header {
        flex-direction: column; /* Stack items in header */
        align-items: flex-start; /* Align items to the start */
    }

    .nav {
        flex-direction: column; /* Stack nav items */
        align-items: flex-start; /* Align items to the start */
    }

    .nav li {
        margin: 10px 0; /* Adjust vertical spacing */
    }

    .container {
        padding: 20px; /* Reduce padding for smaller screens */
    }

    h1 {
        font-size: 24px; /* Reduce font size for headings */
    }

    .opening-hours {
        font-size: 16px; /* Reduce font size */
    }

    .row {
        flex-direction: column; /* Stack columns */
    }

    .left-container, .right-container {
        margin: 5px 0; /* Adjust margin for stacked layout */
    }
}

@media (max-width: 480px) {
    .company-name {
        font-size: 18px; /* Reduce font size for small screens */
    }

    .logo {
        height: 30px; /* Reduce logo size */
    }

    .section {
        padding: 15px; /* Reduce padding in sections */
    }

    .icon {
        font-size: 20px; /* Adjust icon size */
    }

    .footer-section h2 {
        font-size: 18px; /* Reduce footer heading size */
    }
}