:root {
            --primary-blue: #0062B2;
            --accent-orange: #FF9D00;
            --white: #FFFFFF;
            --text-dark: #333;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            padding-top: 80px;
        }

        .my-header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 0.5rem 1rem;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0.5rem 0;
        }

        .logo img {
            width: 80px;
            height: auto;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-menu li a {
            font-weight: 500;
            color: var(--text-dark);
            position: relative;
            text-decoration: none;
            transition: var(--transition);
            padding: 0.5rem 0;
        }

        .nav-menu li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-blue);
            transition: var(--transition);
        }

        .nav-menu li a:hover {
            color: var(--primary-blue);
        }

        .nav-menu li a:hover::after {
            width: 100%;
        }

        .cta-button {
            background: var(--accent-orange);
            color: var(--white);
            padding: 0.6rem 1.5rem;
            border-radius: 4px;
            font-weight: 600;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
            background: #e58900;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

     
        .mobile-menu-btn {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--text-dark);
            background: none;
            border: none;
            padding: 0.5rem;
        }


        @media (max-width: 968px) {
            .mobile-menu-btn {
                display: block;
                z-index: 1001;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                gap: 0;
                padding: 5rem 1rem 2rem;
                transition: var(--transition);
                box-shadow: var(--shadow);
                z-index: 1000;
                overflow-y: auto;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu li {
                width: 100%;
                text-align: left;
            }

            .nav-menu li a {
                display: block;
                padding: 1rem;
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            }

            .nav-menu li:last-child a {
                border-bottom: none;
            }

            .header-cta {
                display: none;
            }
            
         
            .overlay {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.5);
                z-index: 999;
            }
            
            .overlay.active {
                display: block;
            }
        }

     
        @media (max-width: 360px) {
            .header-container {
                padding: 0.5rem;
            }
            
            .logo img {
                width: 70px;
            }
            
            .nav-menu {
                width: 85%;
            }
        }

        
        .content {
            padding: 2rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .content h1 {
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .content p {
            line-height: 1.6;
            margin-bottom: 1rem;
        }