* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.5;
        }

        header {
            background: linear-gradient(to right, #1a365d, #2c5282);
            color: white;
            padding: 15px 40px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo img {
            width: 175px;
            height: 45px;
            border-radius: 8px;
            margin-right: 12px;
            transition: transform 0.3s ease;
        }

        .logo:hover img {
            transform: scale(1.05);
        }

        .search-container {
            flex: 1;
            display: flex;
            justify-content: center;
            margin: 0 20px;
            position: relative;
        }

        .search-container input[type="text"] {
            width: 100%;
            max-width: 400px;
            padding: 10px;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            outline: none;
        }

        .search-container button {
            padding: 10px 20px;
            border: none;
            border-radius: 6px;
            background-color: #2c5282;
            color: white;
            font-size: 16px;
            cursor: pointer;
            margin-left: 10px;
            transition: background-color 0.3s ease;
        }

        .search-container button:hover {
            background-color: #1a365d;
        }

        .suggestions {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            max-width: 400px;
            background: white;
            border-radius: 6px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            display: none;
        }

        .suggestions ul {
            list-style: none;
            padding: 0;
            margin: 0;
            height: 239px;
            overflow: auto;
        }

        .suggestions ul li {
            padding: 10px;
            cursor: pointer;
            color: #2d3748;
            transition: background-color 0.3s ease;
        }

        .suggestions ul li:hover {
            background-color: #f7fafc;
        }

        nav {
            display: flex;
            align-items: center;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 10px;
        }

        nav ul li {
            position: relative;
            padding: 5px;
        }

        nav ul li a {
            text-decoration: none;
            color: white;
            font-size: 16px;
            padding: 8px 16px;
            border-radius: 6px;
            transition: all 0.3s ease;
            display: block;
        }

        nav ul li a:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        nav ul li .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            border-radius: 8px;
            min-width: 250px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            overflow: hidden;
        }

        nav ul li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(5px);
        }

        .dropdown a {
            color: #2d3748;
            padding: 12px 20px;
            border-left: 3px solid transparent;
        }

        .dropdown a:hover {
            color: #2c5282;
            background: #f7fafc;
            border-left: 3px solid #2c5282;
            transform: translateX(5px);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            padding: 5px;
        }

        .menu-toggle div {
            width: 28px;
            height: 2px;
            background-color: white;
            transition: all 0.3s ease;
        }

        @media (max-width: 768px) {
            header {
                padding: 15px 20px;
            }

            .menu-toggle {
                display: flex;
            }

            .search-container {
                order: 3;
                width: 100%;
                margin: 10px 0;
            }

            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #1a365d;
                flex-direction: column;
                padding: 20px;
                gap: 15px;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            }

            nav ul.active {
                display: flex;
            }

            nav ul li .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                margin-top: 10px;
                display: none;
            }

            nav ul li:hover .dropdown {
                display: block;
            }

            .menu-toggle.active div:nth-child(1) {
                transform: rotate(45deg) translate(8px, 6px);
            }

            .menu-toggle.active div:nth-child(2) {
                opacity: 0;
            }

            .menu-toggle.active div:nth-child(3) {
                transform: rotate(-45deg) translate(8px, -6px);
            }
        }


        /* Enhanced Footer Styles */
        footer {
            background-color: #ffffff;
            color: #000000;
            padding: 40px 20px;
            border-top: 1px solid #eee;
            margin-top: 3rem;
            font-family: 'Poppins', sans-serif;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }

        .footer-column {
            flex: 1 1 200px;
            min-width: 200px;
            padding: 0 15px;
        }

        .footer-column h4 {
            color: #ed120c;
            font-size: 18px;
            margin-bottom: 15px;
            text-align: left;
            position: relative;
            padding-bottom: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background: #ed120c;
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .footer-column:hover h4::after {
            width: 60px;
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left;
        }

        .footer-column ul li {
            font-size: 15px;
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }

        .footer-column ul li:hover {
            transform: translateX(5px);
        }

        .footer-column ul li a {
            color: #595959;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
            position: relative;
            padding-left: 0;
        }

        .footer-column ul li a:hover {
            color: #e31a14;
            padding-left: 5px;
        }

        .footer-column ul li a::before {
            opacity: 0;
            transition: all 0.3s ease;
            position: absolute;
            left: -15px;
        }

        .footer-column ul li a:hover::before {
            opacity: 1;
            left: -10px;
        }

        /* Social Media Section with Modern Icons */
        .social-section {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        .social-title {
            text-align: center;
            color: #333;
            font-size: 16px;
            margin-bottom: 15px;
        }

        .social-media {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .social-media a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #f5f5f5;
            color: #666;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-media a:hover {
            background: #0921bd;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(237, 18, 12, 0.2);
        }

        .social-media a i {
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .social-media a:hover i {
            transform: scale(1.2);
        }

        /* Remove newsletter styles */
        .newsletter,
        .newsletter-form,
        .newsletter-input,
        .newsletter-button {
            display: none;
        }

        /* Update copyright section without links */
        .footer-copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #eee;
            margin-top: 20px;
        }

        .footer-copyright p {
            margin: 5px 0;
            color: #666;
            font-size: 14px;
        }

        /* Remove footer links styles */
        .footer-links {
            display: none;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-content {
                gap: 20px;
            }

            .footer-column {
                flex: 1 1 45%;
                min-width: 150px;
            }
        }

        @media (max-width: 480px) {
            footer {
                padding: 30px 15px;
            }

            .footer-column {
                flex: 1 1 100%;
                text-align: center;
            }

            .footer-column h4 {
                text-align: center;
            }

            .footer-column h4::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .footer-column ul {
                text-align: center;
            }

            .footer-column ul li a {
                justify-content: center;
            }

            .social-media {
                gap: 15px;
            }
        }