        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f8f9fa;
        }
        
        /* Header Styles */
        .header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #e74c3c;
            text-decoration: none;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-menu a:hover {
            color: #e74c3c;
        }
        
        .contact-btn {
            background: #e74c3c;
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            text-decoration: none;
            transition: background 0.3s;
        }
        
        .contact-btn:hover {
            background: #c0392b;
        }
        
        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, #2c3e50, #34495e);
            color: white;
            text-align: center;
            padding: 120px 0 80px;
            margin-top: 70px;
        }
        
        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .page-header p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .last-updated {
            background: rgba(255,255,255,0.1);
            color: white;
            padding: 1rem 2rem;
            border-radius: 8px;
            margin-top: 2rem;
            display: inline-block;
        }
        
        /* Content Section */
        .content-section {
            padding: 80px 0;
        }
        
        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .content-wrapper {
            background: white;
            border-radius: 15px;
            padding: 4rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
        }
        
        .content-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            border-radius: 15px 15px 0 0;
        }
        
        /* Table of Contents */
        .toc {
            background: #f8f9fa;
            border-left: 4px solid #e74c3c;
            padding: 2rem;
            margin-bottom: 3rem;
            border-radius: 0 8px 8px 0;
        }
        
        .toc h3 {
            color: #2c3e50;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        .toc ul {
            list-style: none;
            padding-left: 0;
        }
        
        .toc li {
            margin-bottom: 0.8rem;
        }
        
        .toc a {
            color: #7f8c8d;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            display: flex;
            align-items: center;
        }
        
        .toc a:hover {
            color: #e74c3c;
        }
        
        .toc a::before {
            content: '→';
            margin-right: 0.5rem;
            color: #e74c3c;
        }
        
        /* Content Sections */
        .policy-section {
            margin-bottom: 3rem;
            scroll-margin-top: 100px;
        }
        
        .policy-section h2 {
            color: #2c3e50;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #e74c3c;
            display: flex;
            align-items: center;
        }
        
        .policy-section h2 i {
            margin-right: 1rem;
            color: #e74c3c;
            font-size: 1.5rem;
        }
        
        .policy-section h3 {
            color: #34495e;
            font-size: 1.4rem;
            margin: 2rem 0 1rem;
        }
        
        .policy-section p {
            color: #7f8c8d;
            margin-bottom: 1.5rem;
            line-height: 1.8;
            text-align: justify;
        }
        
        .policy-section ul,
        .policy-section ol {
            color: #7f8c8d;
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }
        
        .policy-section li {
            margin-bottom: 0.8rem;
            line-height: 1.6;
        }
        
        /* Highlight Boxes */
        .highlight-box {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .highlight-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
        }
        
        .highlight-box-content {
            position: relative;
            z-index: 2;
        }
        
        .highlight-box h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }
        
        .highlight-box h4 i {
            margin-right: 0.5rem;
            font-size: 1.2rem;
        }
        
        .highlight-box p {
            color: white;
            opacity: 0.95;
            margin-bottom: 0;
        }
        
        /* Warning Box */
        .warning-box {
            background: #fff3cd;
            border: 1px solid #ffeaa7;
            border-left: 4px solid #f39c12;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        
        .warning-box h4 {
            color: #856404;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }
        
        .warning-box h4 i {
            margin-right: 0.5rem;
        }
        
        .warning-box p {
            color: #856404;
            margin-bottom: 0;
        }
        
        /* Contact Info Box */
        .contact-info-box {
            background: #e8f5e8;
            border: 1px solid #c3e6c3;
            border-left: 4px solid #27ae60;
            padding: 2rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        
        .contact-info-box h4 {
            color: #27ae60;
            margin-bottom: 1rem;
        }
        
        .contact-info-box p {
            color: #2d5930;
            margin-bottom: 0.5rem;
        }
        
        .contact-info-box a {
            color: #27ae60;
            text-decoration: none;
            font-weight: 600;
        }
        
        .contact-info-box a:hover {
            text-decoration: underline;
        }
        
        /* Footer */
        .footer {
            background: #2c3e50;
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .footer-section h4 {
            margin-bottom: 1.5rem;
            color: #e74c3c;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-section ul li a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section ul li a:hover {
            color: white;
        }
        
        .footer-bottom {
            border-top: 1px solid #34495e;
            margin-top: 2rem;
            padding-top: 2rem;
            text-align: center;
            color: #bdc3c7;
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .content-wrapper {
                padding: 2rem;
            }
            
            .toc {
                padding: 1.5rem;
            }
            
            .policy-section h2 {
                font-size: 1.5rem;
            }
            
            .policy-section h2 i {
                font-size: 1.2rem;
            }
        }