/* Policy Pages Specific Styles */
.policy-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--space-dark), var(--deep-space));
    color: white;
    padding-top: 120px;
    padding-bottom: 60px;
}

.policy-content {
    background: var(--deep-space);
    position: relative;
    padding: 80px 0;
}

.policy-container {
    max-width: 1000px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 60px;
    background: var(--space-light);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.policy-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--starlight);
    text-shadow: 0 0 10px var(--cyber-aqua-glow);
    position: relative;
    padding-bottom: 15px;
}

.policy-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-violet), var(--cyber-aqua));
    border-radius: 2px;
}

.policy-section h3 {
    font-size: 1.5rem;
    margin: 25px 0 15px;
    color: var(--cyber-aqua);
    text-shadow: 0 0 8px var(--cyber-aqua-glow);
}

.policy-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--cosmic-text);
}

.policy-section ul, .policy-section ol {
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--cosmic-text);
}

.policy-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: var(--space-dark);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-table th {
    background: linear-gradient(90deg, var(--neon-violet), var(--cyber-aqua));
    color: white;
    text-align: left;
    padding: 15px;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.cookie-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--glass-border);
    color: var(--cosmic-text);
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

.cookie-table tr:hover {
    background: rgba(168, 85, 247, 0.1);
}

.last-updated {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    color: var(--cosmic-text);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-hero {
        min-height: 50vh;
        padding-top: 100px;
        padding-bottom: 40px;
    }
    
    .policy-content {
        padding: 60px 0;
    }
    
    .policy-section {
        padding: 25px;
        margin-bottom: 40px;
    }
    
    .policy-section h2 {
        font-size: 1.7rem;
    }
    
    .policy-section h3 {
        font-size: 1.3rem;
    }
    
    .cookie-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .policy-hero {
        min-height: 40vh;
        padding-top: 80px;
    }
    
    .policy-content {
        padding: 40px 0;
    }
    
    .policy-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
}
