:root { --primary: #2c3e50; --secondary: #3498db; --accent: #e74c3c; --text: #333; --light-gray: #f8f9fa; --border: #e0e0e0; --success: #2ecc71; } * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } body { color: var(--text); line-height: 1.6; background-color: var(--light-gray); } .containers { max-width: 1100px; margin: 0 auto; padding: 20px; margin-top: 10%; } header { background-color: var(--primary); color: white; padding: 30px 0; text-align: center; margin-bottom: 30px; } header h1 { font-size: 2.2rem; margin-bottom: 10px; } .last-updated { font-style: italic; opacity: 0.8; } .policy-content { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .policy-section { margin-bottom: 30px; } h2 { color: var(--primary); margin-bottom: 15px; font-size: 1.5rem; padding-bottom: 8px; border-bottom: 2px solid var(--light-gray); } h3 { color: var(--secondary); margin: 20px 0 10px; font-size: 1.2rem; } p, ul, ol { margin-bottom: 15px; } ul, ol { padding-left: 25px; } li { margin-bottom: 8px; } .refund-tier { background-color: var(--light-gray); padding: 20px; border-radius: 8px; margin: 20px 0; border-left: 4px solid; } .tier-1 { border-left-color: var(--success); } .tier-2 { border-left-color: #f39c12; } .tier-3 { border-left-color: var(--accent); } .refund-tier h4 { color: var(--primary); margin-bottom: 10px; display: flex; align-items: center; } .refund-tier h4 i { margin-right: 10px; } .highlight-box { background-color: #fff8e1; padding: 20px; border-radius: 8px; margin: 20px 0; border-left: 4px solid #ffc107; } .process-steps { counter-reset: step-counter; } .process-step { position: relative; padding-left: 40px; margin-bottom: 20px; } .process-step::before { counter-increment: step-counter; content: counter(step-counter); position: absolute; left: 0; top: 0; background-color: var(--secondary); color: white; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; } .contact-info { background-color: var(--light-gray); padding: 20px; border-radius: 8px; margin-top: 30px; } .contact-info h3 { color: var(--primary); } .email-link { color: var(--secondary); text-decoration: none; font-weight: 500; } .email-link:hover { text-decoration: underline; } .promise-item { display: flex; align-items: flex-start; margin-bottom: 15px; } .promise-item i { color: var(--success); margin-right: 10px; margin-top: 3px; } @media (max-width: 768px) { header h1 { font-size: 1.8rem; } .policy-content { padding: 20px; } h2 { font-size: 1.3rem; } }