.policy-page {
    padding: 4rem 0;
    min-height: 70vh;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.policy-header h1 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.policy-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.policy-content {
    background: rgba(42, 42, 42, 0.5);
    border-radius: 10px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.policy-section h2 i {
    font-size: 1.3rem;
}

.policy-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-section ul {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section ul li {
    margin-bottom: 0.5rem;
}

.policy-section strong {
    color: var(--text-color);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--accent-color);
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .policy-header h1 {
        font-size: 2rem;
    }

    .policy-content {
        padding: 1.5rem;
    }

    .policy-section h2 {
        font-size: 1.3rem;
    }
}