<style>
        /* Global Reset and Basic Styling */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: white;
                  margin: 0;
      padding: 0;

        }


        /* Header Section */
        header {
            background: #003366;
            color: #fff;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Logo Styling */
        .logo {
            height: 120px;
        }

        /* Social Media Container */
        .social-media-container {
            position: absolute;
            top: 10px;
            right: 20px;
            display: flex;
            align-items: center;
        }

        .follow-us {
            font-size: 16px;
            margin-right: 10px;
            font-weight: bold;
            color: Maroon;
        }

        .social-media a {
            margin-left: 8px;
            text-decoration: none;
            color: #555;
            font-size: 20px;
            transition: color 0.3s ease;
        }

        .social-media a:hover {
            color: #0078d7;
        }

        /* Navigation Menu Styling */
        .navbar {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            background-color: maroon;
            padding: 5px 20px;
        }

        .navbar a {
            font-family: 'Source Sans Pro', sans-serif;
            font-size: 18px;
            font-weight: bold;
            color: white;
            text-decoration: none;
            padding: 5px 15px;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }

        .navbar a:hover {
            background-color: #993333;
        }

        /* Dropdown Menu Styling */
        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #f5e6e6;
            min-width: 200px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            border-radius: 5px;
            z-index: 1;
            border: 1px solid #993333;
        }

        .dropdown-content a {
            font-size: 16px;
            font-weight: normal;
            color: #333;
            text-decoration: none;
            padding: 10px 15px;
            display: block;
            transition: background-color 0.3s ease;
            border-bottom: 1px solid #d9d9d9;
        }

        .dropdown-content a:last-child {
            border-bottom: none;
        }

        .dropdown-content a:hover {
            background-color: #e6cccc;
        }

        /* Nested Dropdown Menu */
        .nested-dropdown {
            position: relative;
        }

        .nested-dropdown-content {
            display: none;
            position: absolute;
            top: 0;
            left: 100%;
            background-color: #f5e6e6;
            min-width: 220px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            border-radius: 5px;
            z-index: 2;
            border: 1px solid #993333;
        }

        .nested-dropdown-content a {
            font-size: 16px;
            font-weight: normal;
            color: #333;
            text-decoration: none;
            padding: 10px 15px;
            display: block;
            transition: background-color 0.3s ease;
        }

        .nested-dropdown-content a:hover {
            background-color: #e6cccc;
        }

        /* Show dropdowns on hover */
        .dropdown:hover .dropdown-content,
        .dropdown-content:hover {
            display: block;
        }

        .nested-dropdown:hover .nested-dropdown-content,
        .nested-dropdown-content:hover {
            display: block;
        }
    </style>