        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            #color:#fff ;
            background-color: #fff;
            padding-top: 10px;
            padding-bottom: 5px;
        }



        header {
            background-color: 0xf4f4f4;
            color:#333 ;
            #padding-bottom: 15px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo{
          display: flex;
            align-items: center;
            justify-content: center;
            max-width: 13%;
            min-width: 130px;
        }

        .logo img {
           max-width:100%;
           max-height:100%;
        }


        /* Desktop Navigation */
        .desktop-nav ul {
            display: flex;
            list-style: none;
        }

        .desktop-nav li {
            margin-left: 25px;
        }

        .desktop-nav a {
            color: #333;
            text-decoration: none;
            font-weight: bold;
            transition: opacity 0.3s;
                font-size: 1rem;
        }

        .desktop-nav a:hover {
            opacity: 0.8;
        }
       .cta-button {
            background-color: #ff6b00;
            color: white;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .cta-button:hover {
            background-color: #ff8500;
        }

        /* Mobile Navigation */
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #333;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 400px;
            height: 100vh;
            background: white;
            z-index: 1000;
            padding: 80px 30px 30px;
            transition: right 0.3s ease-in-out;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav ul {
            list-style: none;
        }

        .mobile-nav li {
            #margin-bottom: 20px;
            margin-bottom: 4px;
        }

        .mobile-nav a {
            #color: #333;
            color: #3498db;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }
        .close-menu {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 1rem;
            color: #777;
            cursor: pointer;
        }

/* Responsive Styles */

        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }

            .mobile-nav-toggle {
                display: block;
            }

            .logo {
              max-width:28%;
            }

        }



        @media (max-width: 480px) {

            .logo {
              max-width:40%;
            }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        }


        .red-btn {
            background-color: #e74c3c;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            min-width: 200px;
        }

        .msg-container {
           font-weight:bold;
           background-color: #fff;
           #color: #3471db;
           color: #000;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    #height: auto;
    height: max-content;
}

