/* --- POLICY PAGES LAYOUT --- */
.policy-page {
    padding-top: 120px;
    padding-bottom: 80px;
    max-width: 800px; /* Narrower width for better readability of long text */
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    opacity: 0;
    animation: pageFadeIn 1s ease-out forwards;
}

/* --- POLICY HEADER --- */
.policy-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(152, 130, 100, 0.2);
}

.policy-header h1 {
    color: var(--accent-color);
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.policy-meta {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
    font-style: italic;
}

/* --- POLICY INTRO --- */
.policy-intro {
    margin-bottom: 40px;
}

.policy-intro p {
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* --- POLICY CONTENT --- */
.policy-content section {
    margin-bottom: 35px;
}

.policy-content h2 {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    margin-top: 10px;
}

.policy-content p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.policy-content p strong {
    color: var(--text-color);
    font-weight: 600;
}

.policy-content ul {
    margin: 10px 0 15px 20px;
    padding: 0;
}

.policy-content ul li {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 10px;
    padding-left: 5px;
    list-style-type: disc;
}

/* Links inside the policy text */
.policy-content a {
    color: var(--accent-color);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.3s ease;
}

.policy-content a:hover {
    opacity: 0.7;
}

/* --- POLICY DISCLAIMER (The 'Important' note at the bottom) --- */
.policy-disclaimer {
    margin-top: 60px;
    padding: 25px;
    background-color: rgba(152, 130, 100, 0.05);
    border-left: 3px solid var(--accent-color);
    border-radius: 4px;
}

.policy-disclaimer p {
    color: var(--text-color);
    font-size: 0.85rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    opacity: 0.85;
}

.policy-disclaimer strong {
    font-style: normal;
    color: var(--accent-color);
    font-weight: 600;
}

/* --- ANIMATIONS --- */
@keyframes pageFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    .policy-page {
        padding-top: 100px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .policy-header h1 {
        font-size: 1.6rem;
    }

    .policy-content h2 {
        font-size: 1.15rem;
    }

    .policy-content p, 
    .policy-content ul li {
        font-size: 0.9rem;
    }
    
    .policy-disclaimer {
        padding: 20px;
    }
}