/* Policy Pages Styles */
.policy-page {
    background: linear-gradient(180deg, var(--color-black-deep), var(--color-navy-dark));
    min-height: 100vh;
    overflow-x: hidden;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-cyan);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 3rem;
    transition: var(--transition);
}

.back-link:hover {
    color: #fff;
    transform: translateX(-5px);
}

.back-link i {
    font-size: 1.2rem;
}

.policy-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 229, 255, 0.2);
}

.policy-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.last-update {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.policy-content {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.policy-content .intro {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-cyan);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.policy-section h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #fff;
    margin: 1.5rem 0 1rem;
}

.policy-section p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.policy-section ul {
    list-style: none;
    margin: 1rem 0;
}

.policy-section li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.policy-section li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--color-cyan);
    font-size: 1.5rem;
    line-height: 1;
}

.policy-section li strong {
    color: #fff;
}

.policy-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 229, 255, 0.2);
    text-align: center;
}

.policy-footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .policy-container {
        padding: 2rem 1.5rem;
    }

    .policy-header h1 {
        font-size: 2rem;
    }

    .policy-section h2 {
        font-size: 1.3rem;
    }

    .policy-content .intro {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .policy-container {
        padding: 1.5rem 1rem;
    }

    .policy-header h1 {
        font-size: 1.6rem;
    }

    .back-link {
        font-size: 0.85rem;
    }
}