  * {
            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-color: #f8f9fa;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        .header {
            background: linear-gradient(135deg, #1a5fb4 0%, #26a269 100%);
            color: white;
            padding: 2rem 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.8rem;
            font-weight: 700;
        }

        .logo-icon {
            font-size: 2.2rem;
        }

        .last-updated {
            background-color: rgba(255, 255, 255, 0.15);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* Main Content Styles */
        .main-content {
            padding: 2rem 0;
            display: flex;
            gap: 30px;
        }

        /* Sidebar Navigation */
        .sidebar {
            flex: 0 0 250px;
            position: sticky;
            top: 30px;
            align-self: flex-start;
            background-color: white;
            border-radius: 10px;
            padding: 25px 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            max-height: 80vh;
            overflow-y: auto;
        }

        .sidebar h3 {
            color: #1a5fb4;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e0e0e0;
        }

        .nav-links {
            list-style: none;
        }

        .nav-links li {
            margin-bottom: 10px;
        }

        .nav-links a {
            display: block;
            padding: 10px 15px;
            color: #555;
            text-decoration: none;
            border-radius: 6px;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }

        .nav-links a:hover {
            background-color: #f0f7ff;
            color: #1a5fb4;
            border-left: 3px solid #1a5fb4;
        }

        .nav-links a.active {
            background-color: #f0f7ff;
            color: #1a5fb4;
            border-left: 3px solid #1a5fb4;
            font-weight: 600;
        }

        .nav-links i {
            width: 20px;
            text-align: center;
            margin-right: 10px;
        }

        /* Policy Content */
        .policy-content {
            flex: 1;
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .policy-section {
            margin-bottom: 40px;
            scroll-margin-top: 30px;
        }

        .policy-section h2 {
            color: #1a5fb4;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .policy-section h2 i {
            color: #26a269;
        }

        .policy-section p {
            margin-bottom: 15px;
            color: #444;
        }

        .policy-section ul, .policy-section ol {
            margin-left: 25px;
            margin-bottom: 15px;
        }

        .policy-section li {
            margin-bottom: 8px;
        }

        .highlight-box {
            background-color: #f8f9fa;
            border-left: 4px solid #1a5fb4;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }

        .highlight-box.warning {
            border-left-color: #e5a50a;
            background-color: #fff8e1;
        }

        .highlight-box.important {
            border-left-color: #c64600;
            background-color: #fff0e6;
        }

        .highlight-box.success {
            border-left-color: #26a269;
            background-color: #e6f7ef;
        }

        .payment-processors {
            display: flex;
            gap: 20px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .processor-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 15px;
            background-color: #f8f9fa;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
            transition: all 0.3s ease;
        }

        .processor-logo:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .processor-logo img {
            height: 30px;
            width: auto;
        }

        /* Footer Styles */
        .footer {
            background-color: #2d3748;
            color: #e2e8f0;
            padding: 3rem 0 2rem;
            margin-top: 3rem;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
        }

        .footer-section h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #cbd5e0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-item i {
            color: #26a269;
            width: 20px;
        }

        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 20px;
            border-top: 1px solid #4a5568;
            color: #a0aec0;
            font-size: 0.9rem;
        }

        /* Print & Download Buttons */
        .action-buttons {
            display: flex;
            gap: 15px;
            margin: 30px 0;
            flex-wrap: wrap;
        }

        .btn {
            padding: 12px 25px;
            border-radius: 6px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary {
            background-color: #1a5fb4;
            color: white;
        }

        .btn-primary:hover {
            background-color: #155499;
        }

        .btn-secondary {
            background-color: #26a269;
            color: white;
        }

        .btn-secondary:hover {
            background-color: #1e8c5a;
        }

        .btn-outline {
            background-color: transparent;
            color: #1a5fb4;
            border: 2px solid #1a5fb4;
        }

        .btn-outline:hover {
            background-color: #f0f7ff;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .main-content {
                flex-direction: column;
            }
            
            .sidebar {
                position: static;
                max-height: none;
            }
            
            .nav-links {
                display: flex;
                flex-wrap: wrap;
                gap: 10px;
            }
            
            .nav-links li {
                flex: 1;
                min-width: 200px;
            }
            
            .nav-links a {
                border-left: none;
                border-bottom: 3px solid transparent;
            }
            
            .nav-links a:hover,
            .nav-links a.active {
                border-left: none;
                border-bottom: 3px solid #1a5fb4;
            }
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            
            .payment-processors {
                flex-direction: column;
            }
            
            .action-buttons {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: #1a5fb4;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            z-index: 100;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background-color: #155499;
            transform: translateY(-3px);
        }