/* ============================================
   POLICY PAGES STYLES
   ============================================ */
.policy-page-body {
    background-color: var(--main-bg);
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(249, 115, 22, 0.08), transparent 25%), 
        radial-gradient(circle at 85% 30%, rgba(234, 88, 12, 0.08), transparent 25%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.policy-header-section {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
}

.policy-header-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.policy-title {
    font-size: 56px;
    margin-bottom: var(--space-lg);
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.policy-subtitle {
    font-size: 20px;
    color: var(--text-tertiary);
    max-width: 600px;
    margin: 0 auto;
}

.policy-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-xl) var(--space-4xl);
}

.policy-card {
    background: rgba(41, 37, 36, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid var(--surface-light);
    border-radius: 24px;
    padding: var(--space-4xl);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.policy-content h3 {
    color: var(--primary-orange);
    font-size: 24px;
    margin: var(--space-3xl) 0 var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.policy-content h3::before {
    content: '';
    display: block;
    width: 8px;
    height: 24px;
    background: var(--primary-orange);
    border-radius: 4px;
}

.policy-content p {
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.policy-content ul {
    list-style: none;
    margin-bottom: var(--space-xl);
    background: rgba(0,0,0,0.2);
    padding: var(--space-xl);
    border-radius: 12px;
    border: 1px solid var(--surface-light);
}

.policy-content li {
    position: relative;
    padding-left: 30px;
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
    line-height: 1.6;
}

.policy-content li:last-child {
    margin-bottom: 0;
}

.policy-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-size: 24px;
    line-height: 1;
    top: -2px;
}

.policy-content strong {
    color: var(--text-primary);
}

.back-to-home {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: var(--space-xl);
    transition: color 0.3s ease;
}

.back-to-home:hover {
    color: var(--primary-orange);
}

.back-to-home svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.back-to-home:hover svg {
    transform: translateX(-4px);
}

@media (max-width: 768px) {
    .policy-header-section {
        padding: 120px 0 60px;
    }
    .policy-title {
        font-size: 36px;
    }
    .policy-card {
        padding: var(--space-xl);
    }
}
