/* =========================================
   隱私權政策內容區塊 (專屬樣式)
   ========================================= */
ol {
    padding-inline-start: 2em;
}

.policy-section {
    padding: 60px 0;
    flex: 1; /* 讓內容撐開高度，Footer 保持在底部 */
}

.policy-container {
    background-color: white;
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.policy-header {
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.policy-header h1 {
    font-size: 2.2rem;
    color: var(--sidebar-bg-dark-blue);
    margin-bottom: 10px;
}

.policy-meta {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.policy-content h2 {
    font-size: 1.5rem;
    color: var(--main-navy);
    margin-top: 40px;
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 4px solid var(--main-yellow);
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    color: var(--gray-600);
    margin-bottom: 15px;
    text-align: justify;
}

.policy-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 15px;
    color: var(--gray-600);
}

.policy-content li {
    margin-bottom: 8px;
}

.policy-content a {
    color: var(--main-light-blue);
    text-decoration: underline;
}

.policy-content a:hover {
    color: var(--main-dull-blue);
}

@media (max-width: 768px) {
    .policy-container {
        padding: 30px 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-info, .footer-links {
        width: 100%;
        text-align: center;
    }
    
    .footer-info p {
        justify-content: center;
    }

    .footer-links a {
        margin: 0 10px;
        display: inline-block;
    }
    
    .footer-lang-wrapper {
        display: block;
        margin: 15px 0 0 0;
    }
}
