/* Refund Policy Styles - Matches Landing Page Design */

.refund-policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
                 "Segoe UI", Roboto, Inter, "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    min-height: 100vh;
}

/* Responsive container */
@media (min-width: 768px) {
    .refund-policy-container {
        max-width: 900px;
        padding: 32px 24px;
    }
}

@media (min-width: 1024px) {
    .refund-policy-container {
        max-width: 1100px;
        padding: 40px 32px;
    }
}

.refund-policy-header {
    position: sticky;
    top: 0;
    background: var(--bg);
    z-index: 10;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 30px;
}

.back-btn {
    background: var(--surface);
    border: 1px solid var(--border);
    font-size: 16px;
    color: var(--text);
    cursor: pointer;
    padding: 8px 16px;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.back-btn:hover {
    background: var(--border);
    transform: translateY(-1px);
}

.refund-policy-content h1 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 20px 0;
    color: var(--cta-bg);
}

.refund-policy-content {
    line-height: 1.6;
}

.last-updated {
    font-style: italic;
    color: var(--muted);
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
}

.info-block {
    background: var(--surface);
    border-left: 4px solid var(--cta-bg);
    padding: 20px;
    margin-bottom: 25px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.info-block p {
    margin: 8px 0;
    color: var(--text);
    font-size: 14px;
}

.info-block strong {
    color: var(--cta-bg);
    font-weight: 600;
}

.info-block a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-block a:hover {
    color: var(--cta-bg);
    text-decoration: underline;
}

section {
    margin-bottom: 30px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid var(--border);
}

section h2 {
    color: var(--cta-bg);
    font-size: 20px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

section p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

section strong {
    color: var(--cta-bg);
    font-weight: 600;
}

section a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

section a:hover {
    color: var(--cta-bg);
    text-decoration: underline;
}

section ul {
    margin: 12px 0;
    padding-left: 20px;
}

section li {
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 6px;
}

.highlight {
    background: var(--surface);
    padding: 16px;
    border-radius: var(--radius-lg);
    margin: 20px 0;
    border-left: 4px solid var(--cta-bg);
    border: 1px solid var(--border);
}

.highlight h3 {
    color: var(--cta-bg);
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.highlight p {
    color: var(--text);
    margin-bottom: 10px;
    font-size: 14px;
}

.warning {
    background: var(--surface);
    padding: 16px;
    border-radius: var(--radius-lg);
    margin: 20px 0;
    border-left: 4px solid #dc3545;
    border: 1px solid var(--border);
}

.warning h3 {
    color: #dc3545;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.warning p {
    color: var(--text);
    margin-bottom: 10px;
    font-size: 14px;
}

.note {
    background: var(--surface);
    padding: 16px;
    border-radius: var(--radius-lg);
    margin: 20px 0;
    border-left: 4px solid #17a2b8;
    border: 1px solid var(--border);
}

.note h3 {
    color: #17a2b8;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.note p {
    color: var(--text);
    margin-bottom: 10px;
    font-size: 14px;
}

.contact-section {
    background: var(--surface);
    color: var(--text);
    padding: 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 32px;
    border: 1px solid var(--border);
}

.contact-section h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--cta-bg);
    font-weight: 600;
}

.contact-section p {
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text);
}

.contact-section a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact-section a:hover {
    color: var(--cta-bg);
    text-decoration: underline;
}

/* Responsive improvements */
@media (min-width: 768px) {
    section,
    .highlight,
    .warning,
    .note,
    .contact-section,
    .info-block {
        padding: 24px;
    }
    
    .refund-policy-content h1 {
        font-size: 32px;
        margin-bottom: 24px;
    }
    
    section h2 {
        font-size: 22px;
    }
    
    section p,
    section li,
    .info-block p,
    .highlight p,
    .warning p,
    .note p,
    .contact-section p {
        font-size: 15px;
    }
}

@media (min-width: 1024px) {
    section,
    .highlight,
    .warning,
    .note,
    .contact-section,
    .info-block {
        padding: 28px 32px;
    }
    
    .refund-policy-content h1 {
        font-size: 36px;
    }
    
    section p,
    section li,
    .info-block p,
    .highlight p,
    .warning p,
    .note p,
    .contact-section p {
        font-size: 16px;
    }
}