* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

      body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #e0f2fe;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Privacy Policy Specific Styles */
        .main-content {
            padding-top: 80px;
            min-height: 100vh;
            margin-bottom: 0 !important;
            padding-bottom: 0 !important;
        }
            .container {
        max-width: 1000px;
       margin: auto;
        padding: 48px 36px;
        background-color: #fbfbfd;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
        border-radius: 12px;
        border: 1.5px solid #d1e3f8;
        width: 100%;
        transition: box-shadow 0.2s;
        }

        @media (max-width: 600px) {
            .container {
                padding-left: 10px !important;
                padding-right: 20px  !important;
                margin-left: 0 !important;
            }
        }

        .container > * + * {
            margin-top: 10px;
            border-top: 1.5px solid #c3dafe;
            padding-top: 10px;
        }

        .container p, .container li {
            font-size: 1.13rem;
            color: #2b3a4a;
            line-height: 1.7;
        }

        .container h1, .container h2, .container h3 {
            color: #1e293b;
            margin-bottom: 10px;
            font-family: 'Roboto', sans-serif;
        }
            
        .privacy-header{
        position: relative;
        background-image: url('../../img/privacy-policy.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 70vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: white;
        overflow: hidden;
    }

    .privacy-header.overlay {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.45); /* Adjust opacity as needed */
        z-index: 1;
    }


       .privacy-header.scrolled {
             padding: 5px 0;
      }

        h1 {
            font-size: 2.2em;
            margin-bottom: 10px;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-align: center;
            padding: 0 10%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .last-updated {
            font-size: 0.9em;
            color: #fff;
            opacity: 0.9;
            margin-top: 10px;
            display: block;
            text-align: center;
            padding: 0 10%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .intro {
            background-color: #f8f9fa;
            padding: 20px 25px;
            margin-bottom: 20px;
            border-radius: 4px;
            font-size: 1.1em;
            margin-left: 0;
            text-align: left;
        }

        .notice-box {
            background-color: #f8f9fa;
            border: 1px solid #ddd;
            padding: 20px 25px;
            margin: 20px 0;
            border-radius: 8px;
            font-size: 1em;
            line-height: 1.8;
        }

        .background {
            position: fixed;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 25%, #dbeafe 50%, #e0f2fe 75%, #f0f9ff 100%);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
            z-index: -2;
            opacity: 0.9;
        }
        h2 {
            color: #002060;
            font-size: 1.6em;
            margin: 40px 0 20px 0;
            padding-bottom: 10px;
            border-bottom: 2px solid #e0e0e0;
            font-weight: 600;
            margin-left: 0;
        }

        h3 {
            color: #002060;
            font-size: 1.4em;
            margin: 15px 0 10px 0;
            font-weight: 500;
            margin-left: 0;
        }

        p {
            margin-bottom: 15px;
            text-align: justify;
            font-size: 1em;
            line-height: 1.8;
            margin-left: 0;
        }

        ul {
            margin: 15px 0;
            padding-left: 20px;
            margin-left: 0;
        }

        li {
            margin-bottom: 8px;
            font-size: 1em;
        }

        .section {
            margin-bottom: 30px;
            margin-left: 30px;
        }

        .main-content.contact-info {
            background-color: #fff;
            padding: 25px;
            border-radius: 8px;
            margin-top: 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
           
        }

        .main-content.contact-info strong {
            color: #002060;
            display: block;
            margin-bottom: 10px;
            font-size: 1.1em;
        }

        .rights-list {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            border: 1px solid #ddd;
            
        }

        .rights-list li {
            margin-bottom: 15px;
            list-style-type: none;
            position: relative;
            padding-left: 35px;
        }

        .rights-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #002060;
            font-size: 1.2em;
        }

           
        .footer-note {
            text-align: center;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #e0e0e0;
            color: #666;
            font-style: italic;
            font-size: 0.9em;
            margin-left: 0;
        }

         /* Responsive Design */
        @media (max-width: 1024px) {
            .nav-links {
                gap: 0;
            }

            .nav-link {
                padding: 15px 15px;
                font-size: 15px;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-links {
                display: none !important;
            }

            .container-fluid {
                padding: 0 15px;
            }

            .navbar {
                padding: 12px 0;
            }

            .logo img {
                height: 40px;
            }

            .main-content {
                padding-top: 70px;
            }

            .privacy-header {
                border-radius: 0;
            }

            /* Mobile menu ensure visible */
            .mobile-menu {
                display: block;
            }
        }

        @media (max-width: 480px) {
            .mobile-menu {
                width: 100vw;
                max-width: 100vw;
            }

            .mobile-menu-header {
                padding: 0 15px;
            }

            .mobile-close-btn {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }
        }

        /* Smooth scrolling for anchor links */
            html {
        scroll-behavior: smooth;
        scroll-padding-top: 80px; 
        }

        /* Focus states for accessibility */
        .nav-link:focus-visible,
        .dropdown-item:focus-visible,
        .mobile-nav-link:focus-visible,
        .mobile-dropdown-item:focus-visible {
            outline: 2px solid #0066ff;
            outline-offset: 2px;
        }
        /* Remove for mouse clicks */
        .nav-link:focus,
        .dropdown-item:focus,
        .mobile-nav-link:focus,
        .mobile-dropdown-item:focus {
            outline: none; 
            outline: none; 
        }
        /* Animation for dropdown items */
        .dropdown-item {
            animation: fadeInDown 0.3s ease forwards;
            opacity: 0;
            transform: translateY(-10px);
        }

        .nav-item:hover .dropdown-item:nth-child(1) { animation-delay: 0.1s; }
        .nav-item:hover .dropdown-item:nth-child(2) { animation-delay: 0.15s; }
        .nav-item:hover .dropdown-item:nth-child(3) { animation-delay: 0.2s; }
        .nav-item:hover .dropdown-item:nth-child(4) { animation-delay: 0.25s; }
        .nav-item:hover .dropdown-item:nth-child(5) { animation-delay: 0.3s; }

        @keyframes fadeInDown {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Loading animation for page transitions */
        .page-transition {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #0066ff, #06b6d4);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
            z-index: 1003;
        }

        .page-transition.loading {
            transform: scaleX(1);
        }
       
        /* Responsive styles for privacy policy */
        @media (max-width: 768px) {
            .main-content {
                padding-top: 60px;
            }
            .container {
                max-width: 100%;
                padding: 20px 8px;
                border-radius: 8px;
                box-shadow: 0 2px 8px rgba(0,0,0,0.07);
                margin-bottom: 0 !important;
                padding-bottom: 0 !important;
            }
            .container > * + * {
                margin-top: 18px;
                border-top: 1px solid #c3dafe;
                padding-top: 0px;
                
            }
            h1 {
                font-size: 1.5em;
            }
            h2 {
                font-size: 1.2em;
            }
            .intro.card {
                padding: 10px;
            }
            .privacy-header h1{
                font-size: 3rem;
            }
        }
        @media (max-width: 480px) {
            .main-content {
                padding-top: 36px;
            }
            .container {
                margin: 0 0 0 0 !important; /* Zero gap to footer */
                padding: 10px 2vw;
                border-radius: 6px;
                box-shadow: 0 1px 4px rgba(0,0,0,0.05);
            }
            .container p, .container li {
                font-size: 1rem;
            }
            h1 {
                font-size: 1.1em;
            }
            h2 {
                font-size: 1em;
            }
            .intro.card {
                padding: 6px;
            }
        }