/* Policy Pages Common Styles */
.policy-header {
    background: linear-gradient(to left, rgba(15, 26, 36, 0.9), rgba(15, 26, 36, 0.7)), url("../../../assets/images/patterns/blueprint-pattern.jpg");
    background-size: cover;
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
}

.policy-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(to top, var(--light), transparent);
}

.policy-title {
    color: white;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.policy-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

.policy-section {
    margin-bottom: 50px;
}

.policy-section-title {
    color: var(--primary-dark);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.policy-section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.policy-section-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.policy-section-content p {
    margin-bottom: 15px;
}

.policy-section-content ul {
    padding-right: 20px;
    margin-bottom: 15px;
}

.policy-section-content li {
    margin-bottom: 8px;
}

.policy-section-content strong {
    color: var(--primary-dark);
}

.policy-section-content a {
    color: var(--accent-gold);
    text-decoration: none;
    border-bottom: 1px dotted var(--accent-gold);
    transition: all 0.3s ease;
}

.policy-section-content a:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}

.policy-meta {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #777;
}

.policy-date {
    margin-bottom: 10px;
}

.policy-contact {
    display: flex;
    gap: 5px;
    align-items: center;
}

.policy-contact-icon {
    width: 16px;
    height: 16px;
    stroke: var(--accent-gold);
}

@media (max-width: 768px) {
    .policy-header {
        padding: 80px 0 50px;
    }
    
    .policy-title {
        font-size: 2.2rem;
    }
    
    .policy-subtitle {
        font-size: 1.1rem;
    }
    
    .policy-container {
        padding: 40px 20px;
    }
    
    .policy-section-title {
        font-size: 1.5rem;
    }
    
    .policy-section-content {
        font-size: 1rem;
    }
}