/* CSS Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #1a3a5f;
            color: white;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: white;
            text-decoration: none;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 20px;
        }
        
        .nav-menu a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-menu a:hover {
            color: #4fc3f7;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        /* Main Content */
        main {
            padding-top: 80px;
            padding-bottom: 50px;
        }
        
        .privacy-container {
            background-color: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-top: 30px;
        }
        
        .privacy-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .privacy-header h1 {
            font-size: 2.5rem;
            color: #1a3a5f;
            margin-bottom: 15px;
        }
        
        .privacy-header p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .privacy-section {
            margin-bottom: 30px;
        }
        
        .privacy-section h2 {
            color: #1a3a5f;
            font-size: 1.8rem;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
        }
        
        .privacy-section h3 {
            color: #1a3a5f;
            font-size: 1.3rem;
            margin-top: 20px;
            margin-bottom: 10px;
        }
        
        .privacy-section p {
            margin-bottom: 15px;
            color: #555;
        }
        
        .privacy-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
            color: #555;
        }
        
        .privacy-section li {
            margin-bottom: 8px;
        }
        
        .privacy-section a {
            color: #4fc3f7;
            text-decoration: none;
        }
        
        .privacy-section a:hover {
            text-decoration: underline;
        }
        
        /* Footer */
        footer {
            background-color: #1a3a5f;
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: #4fc3f7;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: #4fc3f7;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            color: #ddd;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .privacy-header h1 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: #1a3a5f;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.5s ease;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
                z-index: 1001;
            }
            
            .privacy-container {
                padding: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .privacy-header h1 {
                font-size: 1.8rem;
            }
        }

