/* 
========================================
   COOKIE POLICY PAGE STYLES
========================================
*/

/* Hero Section */
.policy-hero {
    padding: var(--space-16) 0 var(--space-8);
    text-align: center;
    background: linear-gradient(to bottom, var(--color-bg-body) 0%, var(--color-bg-surface) 100%);
    position: relative;
    margin-top: var(--space-12);
}

.policy-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.policy-title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    color: var(--color-primary);
    margin-bottom: var(--space-4);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.policy-subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Body Content */
.policy-body {
    padding: var(--space-12) 0 var(--space-24);
}

.policy-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    padding: var(--space-8) var(--space-6);
    position: relative;
    overflow: hidden;
}

/* Decorative element on card */
.policy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-primary), transparent);
}

.policy-section {
    margin-bottom: var(--space-8);
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
    padding-bottom: var(--space-6);
}

.policy-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-section h2 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--color-text-main);
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
}

.policy-section h2::before {
    content: '◆';
    color: var(--color-primary);
    font-size: 0.8em;
    margin-right: var(--space-3);
}

.policy-section p {
    line-height: var(--leading-loose);
    color: var(--color-text-muted);
    font-size: var(--text-base);
}

.policy-footer {
    margin-top: var(--space-12);
    padding-top: var(--space-6);
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
}

.policy-footer p {
    font-size: var(--text-sm);
    font-style: italic;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (min-width: 768px) {
    .policy-title {
        font-size: var(--text-4xl);
    }
    
    .policy-card {
        padding: var(--space-12);
    }
    
    .policy-footer {
        flex-direction: row;
        justify-content: space-between;
    }
}