/* Policies Pages Styling */
.policy-container {
    max-width: 2000px;
    margin: -50px auto 0;
    padding: 0 1rem;
}

.policy-card {
    background: transparent;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: none;
    border: none;
}

.policy-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.policy-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #f97316);
    border-radius: 3px;
}

.policy-date {
    text-align: center;
    color: #9ca3af;
    margin-bottom: 2rem;
    font-style: italic;
}

.policy-content {
    color: #e5e7eb;
    max-width: none;
}

.policy-section {
    margin-top: 2.5rem;
}

.policy-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f59e0b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.policy-section-title:before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 24px;
    background: #f59e0b;
    margin-right: 12px;
    border-radius: 4px;
}

.policy-subsection-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #e5e7eb;
    margin: 1.5rem 0 0.75rem;
}

.policy-text {
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-list {
    list-style-type: none;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.policy-list li {
    color: #9ca3af;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.policy-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #f59e0b;
}

.policy-list-ordered {
    list-style-type: decimal;
    padding-left: 2rem;
    margin: 1rem 0;
}

.policy-list-ordered li {
    color: #9ca3af;
    margin-bottom: 0.75rem;
}

.policy-contact {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.policy-contact-email {
    color: #f59e0b;
    font-weight: 600;
    text-decoration: none;
}

.policy-contact-email:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .policy-container {
        padding: 0 0.75rem;
    }
    
    .policy-card {
        padding: 1.5rem;
    }
    
    .policy-title {
        font-size: 1.75rem;
    }
    
    .policy-section-title {
        font-size: 1.25rem;
    }
    
    .policy-subsection-title {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .policy-card {
        padding: 1.25rem;
    }
    
    .policy-title {
        font-size: 1.5rem;
    }
    
    .policy-section-title {
        font-size: 1.125rem;
    }
    
    .policy-subsection-title {
        font-size: 1rem;
    }
    
    .policy-list, .policy-list-ordered {
        padding-left: 1rem;
    }
}