/* Policy Pages Styling - PYGNOSIS Theme */

.policy-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px 30px;
    background-color: #1A1F2F;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.policy-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #0CFE25;
}

.policy-header h1 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: var(--body-font, "Hanken Grotesk", sans-serif);
}

.policy-header .last-updated {
    color: #9AAEC4;
    font-size: 0.95rem;
    margin-top: 10px;
}

.policy-header .last-updated strong {
    color: #0CFE25;
}

.policy-content {
    line-height: 1.8;
    color: #9AAEC4;
    font-size: 1rem;
}

.policy-section {
    margin-bottom: 40px;
    padding: 25px;
    background-color: rgba(12, 254, 37, 0.05);
    border-left: 3px solid #0CFE25;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.policy-section:hover {
    background-color: rgba(12, 254, 37, 0.08);
    border-left-color: #00ff66;
}

.policy-section h2 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
    font-family: var(--body-font, "Hanken Grotesk", sans-serif);
}

.policy-section p {
    color: #9AAEC4;
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.8;
}

.policy-section ul {
    margin-left: 25px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.policy-section ul li {
    color: #9AAEC4;
    margin-bottom: 10px;
    line-height: 1.7;
    padding-left: 5px;
}

.policy-section ul li strong {
    color: #0CFE25;
}

.policy-section strong {
    color: #fff;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .policy-container {
        margin: 30px 20px;
        padding: 30px 20px;
    }
    
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-section {
        padding: 20px;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
}
