/* Extracted from pages/refund-return-policy.php */
:root {
            --primary-color: #1a365d;
            --secondary-color: #2b6cb0;
            --premium-color: #d69e2e;
            --success-color: #38a169;
            --danger-color: #e53e3e;
            --warning-color: #d69e2e;
            --info-color: #4299e1;
            --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;
        }
        
        .policy-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .policy-header p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .policy-badge {
            background: linear-gradient(135deg, var(--warning-color), #b7791f);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            display: inline-block;
            margin-top: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        /* Main Content */
        .policy-content {
            background: white;
            border-radius: 10px;
            padding: 50px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            margin-bottom: 50px;
        }
        
        .policy-section {
            margin-bottom: 40px;
            padding-bottom: 40px;
            border-bottom: 1px 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;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--warning-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .section-number {
            background: var(--warning-color);
            color: white;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.9rem;
        }
        
        .section-content p {
            margin-bottom: 15px;
            color: #4a5568;
        }
        
        .section-content ul {
            margin: 15px 0;
            padding-left: 25px;
        }
        
        .section-content li {
            margin-bottom: 10px;
            color: #4a5568;
        }
        
        /* Policy Status Boxes */
        .policy-status {
            display: flex;
            gap: 20px;
            margin: 25px 0;
            flex-wrap: wrap;
        }
        
        .status-box {
            flex: 1;
            min-width: 200px;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
        }
        
        .status-box i {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .no-refund {
            background: linear-gradient(135deg, #fff5f5, #fed7d7);
            border: 2px solid var(--danger-color);
        }
        
        .partial-refund {
            background: linear-gradient(135deg, #fffaf0, #feebc8);
            border: 2px solid var(--warning-color);
        }
        
        .full-refund {
            background: linear-gradient(135deg, #f0fff4, #c6f6d5);
            border: 2px solid var(--success-color);
        }
        
        .status-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--text-color);
        }
        
        /* Notes Boxes */
        .important-note {
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            border-left: 4px solid var(--warning-color);
            padding: 20px;
            border-radius: 5px;
            margin: 25px 0;
        }
        
        .important-note p {
            margin-bottom: 0;
            color: var(--text-color);
            font-weight: 500;
        }
        
        .warning-note {
            background: linear-gradient(135deg, #fff5f5, #fed7d7);
            border-left: 4px solid var(--danger-color);
            padding: 20px;
            border-radius: 5px;
            margin: 25px 0;
        }
        
        .warning-note p {
            margin-bottom: 0;
            color: var(--text-color);
            font-weight: 500;
        }
        
        .info-note {
            background: linear-gradient(135deg, #f0f9ff, #e6fffa);
            border-left: 4px solid var(--info-color);
            padding: 20px;
            border-radius: 5px;
            margin: 25px 0;
        }
        
        .info-note p {
            margin-bottom: 0;
            color: var(--text-color);
            font-weight: 500;
        }
        
        /* Flow Chart */
        .flow-chart {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin: 30px 0;
        }
        
        .flow-step {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 15px;
            background: #f7fafc;
            border-radius: 8px;
            border-left: 4px solid var(--secondary-color);
        }
        
        .step-number {
            background: var(--secondary-color);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        /* Table Styles */
        .policy-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 0.95rem;
        }
        
        .policy-table th {
            background: linear-gradient(135deg, var(--warning-color), #b7791f);
            color: white;
            padding: 15px;
            text-align: left;
            font-weight: 600;
        }
        
        .policy-table td {
            padding: 15px;
            border-bottom: 1px solid var(--border-color);
        }
        
        .policy-table tr:nth-child(even) {
            background-color: #f7fafc;
        }
        
        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            margin-top: 40px;
        }
        
        .contact-section h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: white;
        }
        
        .contact-email {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            padding: 12px 30px;
            border-radius: 30px;
            margin-top: 15px;
            font-weight: 600;
            text-decoration: none;
            color: white;
            transition: all 0.3s;
        }
        
        .contact-email:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
        }
        
        /* Legal Disclaimer */
        .legal-disclaimer {
            background: #f7fafc;
            border: 1px solid var(--border-color);
            padding: 20px;
            border-radius: 8px;
            margin: 30px 0;
            font-size: 0.9rem;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .policy-header {
                padding: 40px 0;
            }
            
            .policy-header h1 {
                font-size: 2rem;
            }
            
            .policy-content {
                padding: 30px 20px;
            }
            
            .section-title {
                font-size: 1.4rem;
            }
            
            .policy-status {
                flex-direction: column;
            }
            
            .status-box {
                min-width: 100%;
            }
            
            .flow-step {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .contact-section {
                padding: 30px 20px;
            }
        }
    
        /* 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;
            }
        }
