.page-content {
    padding: 3rem 0;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid var(--gold-orange);
}

.page-header h1 {
    font-size: 3rem;
    color: var(--gold-orange);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    background: var(--card-bg);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    border-left: 4px solid var(--primary-orange);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.policy-section h2 {
    font-size: 1.8rem;
    color: var(--gold-orange);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold-orange);
}

.policy-section h3 {
    font-size: 1.4rem;
    color: var(--gold-orange);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.policy-section p strong {
    color: var(--gold-orange);
    font-weight: 600;
}

.policy-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.policy-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.policy-list li:last-child {
    border-bottom: none;
}

.policy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold-orange);
    font-size: 1.5rem;
    font-weight: bold;
}

.policy-section a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.3s;
}

.policy-section a:hover {
    color: var(--gold-orange);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .policy-section {
        padding: 1.5rem;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }

    .policy-section h3 {
        font-size: 1.2rem;
    }

    .policy-section p,
    .policy-list li {
        font-size: 1rem;
    }
}

