/* Policy Pages Styles */
.policy-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 60px 0;
    margin-bottom: 40px;
}

.policy-header h1 {
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
}

.policy-header .breadcrumb {
    background: transparent;
    padding: 0;
}

.policy-header .breadcrumb-item,
.policy-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.policy-header .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}

.policy-content {
    padding: 40px 0 80px;
}

.policy-content h2 {
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.policy-content h3 {
    color: var(--text-primary);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.policy-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.policy-content ul {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-content ul li {
    margin-bottom: 10px;
}

.policy-content .last-updated {
    font-style: italic;
    color: var(--text-secondary);
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .policy-header {
        padding: 40px 0;
    }
    
    .policy-content {
        padding: 20px 0 60px;
    }
} 