/* --- css/privacy-policy-styles.css --- */

.privacy-policy-page {
    background-color: #181e24; /* 維持深色背景 */
    color: #e0d9cd;
    font-family: 'Noto Sans TC', Arial, sans-serif;
}

.privacy-policy-content {
    background: linear-gradient(145deg, #23272e, #1a1e24);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    padding: 2rem 3rem; /* 增加內邊距 */
    margin: 2rem 0;
}

.section-title-pp {
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.section-title-pp h1 {
    font-size: 2.5rem;
    color: #ffe27a;
    font-weight: 700;
}
.section-title-pp p {
    color: #868e96;
    font-size: 0.9rem;
}

.policy-section {
    margin-bottom: 2.5rem;
}
.policy-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #36c3f4; /* 藍色強調色 */
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(54, 195, 244, 0.2);
}
.policy-section p,
.policy-section li {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #e0d9cd;
    margin-bottom: 1rem;
}
.policy-section ul,
.policy-section ol {
    padding-left: 2rem;
}
.policy-section a {
    color: #36c3f4;
    text-decoration: underline;
    font-weight: 500;
}
.policy-section a:hover {
    color: #87ceeb;
}

@media (max-width: 768px) {
    .privacy-policy-content { padding: 1.5rem; }
    .section-title-pp h1 { font-size: 2rem; }
    .policy-section h3 { font-size: 1.3rem; }
    .policy-section p, .policy-section li { font-size: 1rem; }
}