    /* This is the complete CSS code. 
    It replaces the old navigation and mobile menu styles with the new, responsive version, while keeping your existing styles for other sections.
    */

    body {
        font-family: 'Poppins', sans-serif;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        background-color: #f4f6f8;
        color: #333;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Header */
    header {
        background-color: #fff;
        padding: 20px 0;
        box-shadow: none;
        position: sticky;
        top: 0;
        z-index: 100;
    }

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: #007bff;
    }
    /* --- Desktop Navigation Links --- */
    .nav-links {
        list-style: none;
        display: flex;
        margin: 0;
        padding: 0;
    }

    .nav-links li {
        position: relative;
        margin-left: 20px;
    }

    .nav-links a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: color 0.3s ease;
        padding: 8px 0;
        display: block;
    }

    .nav-links a:hover {
        color: #007bff;
    }

    /* Desktop Dropdown Menu */
    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f9f9f9;
        min-width: 220px;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        z-index: 1;
        border-radius: 5px;
        padding: 10px 0;
        top: 100%;
        left: 0;
    }

    .dropdown-content a {
        color: #333;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
        transition: background-color 0.3s ease;
    }

    .dropdown-content a:hover {
        background-color: #e2e6ea;
        color: #007bff;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    .dropdown > a::after {
        content: ' \25BE';
        font-size: 0.8em;
        vertical-align: middle;
        margin-left: 5px;
    }

    /* --- Mobile Navigation and Menu --- */

    /* Initially hide the mobile menu button and the mobile menu */
    .mobile-menu-button,
    .mobile-menu {
        display: none;
    }
    
    /* Contact Us Section Specific Styles */
    .contact-hero {
        background-color: #1a202c;
        color: #fff;
        padding: 80px 0;
        text-align: center;
    }

    .contact-hero h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .contact-form-section {
        padding: 0 0;
        background-color: #f4f6f8;
        background-image: url('360_F_337963325_EJuPjWslX3vAFxJ59L3y1cm6IsSfo07s.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-form-section h2 {
        color: #333;
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .contact-form-section .intro-text {
        font-size: 1.2rem;
        margin-bottom: 40px;
        color: #333;
    }

    .contact-form-container {
        background-color: #fff;
        padding: 40px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 800px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-bottom: 0;
        position: relative;
        right: 10%;
    }

    .contact-form-container .form-group {
        flex: 1 1 calc(50% - 20px);
        margin-bottom: 0;
        box-sizing: border-box;
        text-align: left;
    }

    .contact-form-container .form-group.full-width {
        flex: 1 1 100%;
    }

    .contact-form-container label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: #333;
    }

    .contact-form-container input[type="text"],
    .contact-form-container input[type="email"],
    .contact-form-container input[type="tel"],
    .contact-form-container textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 25px;
        font-family: 'Poppins', sans-serif;
        font-size: 1rem;
        box-sizing: border-box;
        background-color: #f0f0f0;
    }

    .contact-form-container textarea {
        resize: vertical;
        min-height: 120px;
        border-radius: 15px;
    }

    .contact-form-container input:focus,
    .contact-form-container textarea:focus {
        border-color: #007bff;
        outline: none;
        box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
    }

    .contact-form-container .submit-button {
        background-color: #1a202c;
        color: #fff;
        border: none;
        padding: 15px 30px;
        border-radius: 25px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        width: 100%;
        margin: 20px auto 0 auto;
        display: block;
        max-width: 300px;
    }

    .contact-form-container .submit-button:hover {
        background-color: #1a202c;
        transform: translateY(-2px);
    }

    .contact-form-container .error-message {
        color: #dc3545;
        font-size: 0.875rem;
        margin-top: 5px;
        margin-bottom: 0;
        display: block;
    }

    .contact-form-container .success-message {
        color: #28a745;
        font-size: 1rem;
        margin-top: 20px;
        text-align: center;
    }

    /* Contact Info Cards Section */
    .contact-info-cards {
        background-color: #f4f6f8;
        padding: 60px 0;
        color: #333;
        text-align: center;
    }

    .contact-info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        justify-content: center;
    }

    .info-card {
        background-color: #fff;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .info-card .icon-wrapper {
        background-color: #1a202c;
        color: #fff;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 2rem;
        margin: 0 auto 20px auto;
    }

    .info-card h3 {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 10px;
        color: #333;
    }

    .info-card p {
        font-size: 1rem;
        line-height: 1.5;
        color: #666;
    }

    /* Footer */
    footer {
        background-color: #1a202c;
        color: #cbd5e0;
        padding: 40px 0;
        font-size: 0.9rem;
    }

    .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-column {
        flex: 1;
        min-width: 200px;
        padding: 10px;
    }

    .footer-column h3 {
        font-size: 1.2rem;
        font-weight: 600;
        color: #007bff;
        margin-bottom: 20px;
    }

    .footer-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-column ul li {
        margin-bottom: 10px;
    }

    .footer-column ul li a {
        text-decoration: none;
        color: #cbd5e0;
        transition: color 0.3s ease;
    }

    .footer-column ul li a:hover {
        color: #fff;
    }

    .footer-contact-info {
        margin-top: 15px;
        color: #cbd5e0;
    }

    .footer-bottom-bar {
        text-align: center;
        padding-top: 20px;
        color: #cbd5e0;
    }

    /* --- Responsive Design --- */
    @media (max-width: 1024px) {
        /* Hide desktop nav and show mobile toggle */
        .nav-links {
            display: none;
        }

        .mobile-menu-button {
            display: block;
            background: none;
            border: none;
            color: #333;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .footer-content {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .footer-column {
            min-width: unset;
            width: 100%;
        }

        .footer-column ul {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
    }

    @media (max-width: 768px) {
        .contact-hero h1 {
            font-size: 2.2rem;
        }
        .contact-form-container {
            padding: 9%;
            flex-direction: column;
            gap: 0;
        }
        .contact-form-container .form-group {
            flex: 1 1 100%;
        }
        .contact-form-container .submit-button {
            width: 80%;
        }
        .contact-info-cards {
            padding: 40px 0;
        }
        .contact-info-grid {
            grid-template-columns: 1fr;
        }

        /* The mobile menu's default state (hidden) */
        .mobile-menu {
            display: flex;
            flex-direction: column;
            position: fixed;
            top: 0;
            left: 0;
            width: 70%; /* Menu is now 70% of the screen width */
            height: 100%;
            background-color: #ffffff;
            z-index: 999;
            padding: 20px;
            box-sizing: border-box;
            transform: translateX(-100%);
            transition: transform 0.3s ease-in-out;
        }

        /* Class to make the mobile menu visible */
        .mobile-menu.active {
            transform: translateX(0);
        }

        /* Style the header inside the mobile menu */
        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 20px;
            border-bottom: 1px solid #ccc;
        }

        .mobile-menu-header .close-button {
            font-size: 30px;
            background: none;
            border: none;
            cursor: pointer;
            color: black;
        }

        /* Mobile menu links styling */
        .mobile-menu a, .mobile-menu .dropdown {
            text-align: left;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }

        .mobile-menu a {
            color: black;
            font-size: 18px;
            font-weight: bold;
            text-decoration: none;
        }

        /* Hide the dropdown content by default in mobile */
        .mobile-menu .dropdown-content {
            display: none;
            position: static;
            box-shadow: none;
            padding: 10px 0 0 20px;
            background-color: transparent;
        }

        /* Show the dropdown content when active */
        .mobile-menu .dropdown.active .dropdown-content {
            display: block;
        }

        /* Style the dropdown parent link for mobile */
        .mobile-menu .dropdown > a {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Add a transition to the dropdown arrow */
        .mobile-menu .dropdown > a::after {
            content: '▼';
            font-size: 14px;
            transform: rotate(0deg);
            transition: transform 0.3s ease;
        }

        /* Rotate the arrow when the dropdown is active */
        .mobile-menu .dropdown.active > a::after {
            transform: rotate(180deg);
        }
    }