.policy-page {
    min-height: 100vh;
    background: var(--bg-light);
    padding-top: 80px;
}

.policy-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 3rem 0 2rem;
    text-align: center;
}

.policy-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.policy-meta {
    font-size: 0.9rem;
    opacity: 0.85;
}

.policy-nav {
    background: var(--white);
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 60px;
    z-index: 100;
}

.policy-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 20px;
}

.policy-nav .back-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.policy-nav .back-link:hover {
    color: var(--secondary-color);
}

.policy-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 20px 4rem;
}

.policy-body .intro {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    line-height: 1.9;
    color: var(--text-light);
    font-size: 0.95rem;
}

.policy-section {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.policy-section h2 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid;
    border-image: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) 1;
}

.policy-section h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin: 1rem 0 0.5rem;
}

.policy-section p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.policy-section ul,
.policy-section ol {
    color: var(--text-light);
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.9;
    font-size: 0.95rem;
}

.policy-section li {
    margin-bottom: 0.4rem;
}

.policy-section strong {
    color: var(--text-dark);
}

.policy-section .highlight-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.2rem;
    border-radius: 0 8px 8px 0;
    margin: 1rem 0;
}

.policy-section .highlight-box p {
    margin-bottom: 0.3rem;
}

.policy-footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 1.5rem 20px;
    font-size: 0.85rem;
}

.policy-footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.policy-footer a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .policy-page {
        padding-top: 60px;
    }

    .policy-header {
        padding: 2rem 0 1.5rem;
    }

    .policy-header h1 {
        font-size: 1.5rem;
    }

    .policy-body {
        padding: 1.5rem 15px 3rem;
    }

    .policy-section {
        padding: 1.2rem;
    }

    .policy-section h2 {
        font-size: 1.15rem;
    }

    .policy-section p,
    .policy-section ul,
    .policy-section ol {
        font-size: 0.9rem;
    }

    .policy-nav {
        top: 50px;
    }
}

@media (max-width: 480px) {
    .policy-header h1 {
        font-size: 1.3rem;
    }

    .policy-section {
        padding: 1rem;
    }

    .policy-section h2 {
        font-size: 1.05rem;
    }

    .policy-section p,
    .policy-section ul,
    .policy-section ol {
        font-size: 0.88rem;
        line-height: 1.8;
    }
}
