/* Policy Pages Styles */
.policy-page {
    background: linear-gradient(180deg, #141253 0%, #19166a 50%, #2d1b69 100%);
    min-height: 100vh;
    color: white;
}

/* Hero Section */
.policy-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #19166a 0%, #2d1b69 100%);
    position: relative;
    overflow: hidden;
}

.policy-hero::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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.policy-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    z-index: 2;
}

.policy-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    color: #f59e0b;
    position: relative;
    z-index: 2;
}

/* Content Section */
.policy-content {
    padding: 80px 0;
    position: relative;
}

.policy-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.policy-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.policy-card h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(245, 158, 11, 0.3);
}

.policy-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.policy-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.policy-card ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.policy-card ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-size: 1.2rem;
    font-weight: bold;
}

.policy-card ul li strong {
    color: white;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-title {
        font-size: 2.5rem;
    }
    
    .policy-subtitle {
        font-size: 1rem;
    }
    
    .policy-hero {
        padding: 80px 0 40px;
    }
    
    .policy-content {
        padding: 60px 0;
    }
    
    .policy-card {
        padding: 30px 20px;
    }
    
    .policy-card h2 {
        font-size: 1.5rem;
    }
    
    .policy-card p,
    .policy-card ul li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .policy-title {
        font-size: 2rem;
    }
    
    .policy-card {
        padding: 25px 15px;
    }
    
    .policy-card h2 {
        font-size: 1.3rem;
    }
}
