/* Styles for Policy Pages */
.policy-page {
    padding: 100px 0;
    background: linear-gradient(135deg, #141e30, #243b55);
}

.policy-page .container {
    max-width: 900px;
    margin: 0 auto;
}

.policy-page h1 {
    margin-bottom: 20px;
    color: #f1faee;
    text-align: center;
    font-size: 2.5rem;
}

.policy-content {
    background-color: var(--block-bg);
    padding: 40px;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.policy-content h2 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--accent-primary);
    border-bottom: 1px solid rgba(255, 183, 3, 0.3);
    padding-bottom: 10px;
}

.policy-content h2:after {
    width: 40px;
    bottom: -5px;
}

.policy-content h3 {
    font-size: 1.4rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #f1faee;
}

.policy-content p,
.policy-content ul {
    margin-bottom: 15px;
    line-height: 1.6;
}

.policy-content ul {
    padding-left: 20px;
}

.policy-content ul li {
    list-style-type: disc;
    margin-bottom: 5px;
}

.policy-content a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.policy-content a:hover {
    color: var(--hover-color);
    text-decoration: underline;
}

.policy-content em {
    font-style: italic;
    color: var(--accent-secondary);
}

.policy-content strong {
    font-weight: bold;
    color: var(--accent-primary);
}

.last-update {
    text-align: center;
    color: rgba(241, 250, 238, 0.7);
    margin-bottom: 30px;
} 