/* Extracted from pages/donation-policy.php */
:root {
            --primary-color: #1a365d;
            --secondary-color: #2b6cb0;
            --danger-color: #e53e3e;
            --warning-color: #d69e2e;
            --success-color: #38a169;
            --text-color: #2d3748;
            --light-bg: #f8f9fa;
            --border-color: #e2e8f0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: var(--light-bg);
        }
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Section */
        .policy-header {
            background: linear-gradient(135deg, var(--primary-color), #0f2547);
            color: white;
            padding: 60px 0;
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }
        
        .policy-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
            background-size: cover;
        }
        
        .policy-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            font-weight: 700;
            position: relative;
            z-index: 1;
        }
        
        .policy-header p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .policy-tag {
            background: rgba(255, 255, 255, 0.1);
            padding: 8px 20px;
            border-radius: 20px;
            display: inline-block;
            margin-top: 20px;
            font-size: 0.9rem;
            position: relative;
            z-index: 1;
            backdrop-filter: blur(10px);
        }
        
        /* Main Content */
        .policy-content {
            background: white;
            border-radius: 15px;
            padding: 50px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            margin-bottom: 50px;
            position: relative;
        }
        
        /* Strict Warning Box */
        .strict-warning {
            background: linear-gradient(135deg, #fff5f5, #fed7d7);
            border: 3px solid var(--danger-color);
            padding: 40px;
            border-radius: 10px;
            margin-bottom: 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(229, 62, 62, 0.4); }
            70% { box-shadow: 0 0 0 20px rgba(229, 62, 62, 0); }
            100% { box-shadow: 0 0 0 0 rgba(229, 62, 62, 0); }
        }
        
        .strict-warning::before {
            content: "\f071";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            font-size: 4rem;
            position: absolute;
            top: -20px;
            right: -20px;
            opacity: 0.2;
        }
        
        .strict-warning h2 {
            color: var(--danger-color);
            font-size: 2rem;
            margin-bottom: 20px;
            font-weight: 800;
        }
        
        .strict-warning p {
            font-size: 1.3rem;
            color: var(--text-color);
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        /* Policy Section */
        .policy-section {
            margin-bottom: 35px;
            padding-bottom: 35px;
            border-bottom: 2px solid var(--border-color);
        }
        
        .policy-section:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .section-title {
            color: var(--primary-color);
            font-size: 1.6rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .section-title i {
            color: var(--secondary-color);
            font-size: 1.4rem;
        }
        
        .section-content p {
            margin-bottom: 15px;
            color: #4a5568;
            font-size: 1.05rem;
        }
        
        .section-content ul {
            margin: 20px 0;
            padding-left: 25px;
        }
        
        .section-content li {
            margin-bottom: 12px;
            color: #4a5568;
            position: relative;
            padding-left: 10px;
        }
        
        .section-content li::before {
            content: "\2022";
            color: var(--secondary-color);
            font-weight: bold;
            position: absolute;
            left: -15px;
        }
        
        /* Currency Boxes */
        .currency-boxes {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .currency-box {
            background: #f7fafc;
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            border: 2px solid var(--border-color);
            transition: all 0.3s ease;
        }
        
        .currency-box:hover {
            transform: translateY(-5px);
            border-color: var(--danger-color);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .currency-icon {
            font-size: 3rem;
            margin-bottom: 15px;
        }
        
        .currency-box h3 {
            color: var(--primary-color);
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        
        .currency-box p {
            color: var(--danger-color);
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        /* Important Notice */
        .important-notice {
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            border-left: 6px solid var(--warning-color);
            padding: 30px;
            border-radius: 8px;
            margin: 30px 0;
        }
        
        .important-notice h3 {
            color: var(--warning-color);
            font-size: 1.4rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, #f0f9ff, #e6fffa);
            border-left: 6px solid var(--secondary-color);
            padding: 30px;
            border-radius: 8px;
            margin-top: 40px;
            text-align: center;
        }
        
        .contact-section h3 {
            color: var(--primary-color);
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        .contact-email {
            display: inline-block;
            background: var(--secondary-color);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            margin-top: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .contact-email:hover {
            background: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(43, 108, 176, 0.3);
        }
        
        /* Footer Badge */
        .footer-badge {
            text-align: center;
            margin-top: 40px;
            padding: 20px;
            background: linear-gradient(135deg, #f0fff4, #c6f6d5);
            border-radius: 10px;
            border: 2px solid var(--success-color);
        }
        
        .footer-badge p {
            color: var(--primary-color);
            font-size: 1.1rem;
            font-weight: 600;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .policy-header {
                padding: 40px 0;
            }
            
            .policy-header h1 {
                font-size: 2rem;
            }
            
            .policy-content {
                padding: 30px 20px;
            }
            
            .strict-warning {
                padding: 25px 20px;
            }
            
            .strict-warning h2 {
                font-size: 1.6rem;
            }
            
            .currency-boxes {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 1.4rem;
            }
        }
        
        /* Print Styles */
        @media print {
            .strict-warning {
                animation: none;
                break-inside: avoid;
            }
        }
    
        /* Universal public-page compatibility with shared header/nav/footer */
        main, .main-content {
            width: 100%;
            max-width: 100%;
            overflow-x: clip;
        }

        main *, main *::before, main *::after,
        .main-content *, .main-content *::before, .main-content *::after {
            min-width: 0;
        }

        main img, main video, main iframe,
        .main-content img, .main-content video, .main-content iframe {
            max-width: 100%;
            height: auto;
        }

        main table, .main-content table {
            max-width: 100%;
        }

        @media (max-width: 768px) {
            main .container,
            .main-content .container {
                width: 100%;
                max-width: 100%;
                padding-left: 14px;
                padding-right: 14px;
            }

            main [style*="grid-template-columns"],
            .main-content [style*="grid-template-columns"] {
                grid-template-columns: 1fr !important;
            }

            main [style*="display: flex"],
            .main-content [style*="display: flex"] {
                flex-wrap: wrap;
            }

            .page-header,
            .policy-header,
            .terms-header,
            .membership-header {
                padding-left: 18px !important;
                padding-right: 18px !important;
                overflow-wrap: anywhere;
            }
        }
