/* 隱私權政策頁面 */
.privacy-page {
    background: #f9fafb;
    padding: 60px 0 80px;
}

.privacy-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}

.privacy-title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 8px;
}

.privacy-updated {
    text-align: center;
    font-size: 14px;
    color: #999;
    margin-bottom: 48px;
}

.privacy-content {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 48px;
}

.privacy-section {
    margin-bottom: 36px;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #53BF6F;
}

.privacy-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #444;
    margin: 18px 0 8px;
}

.privacy-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

.privacy-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}

.privacy-section ul li {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 6px;
}

.privacy-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    background: #53BF6F;
    border-radius: 50%;
}

.privacy-section a {
    color: #53BF6F;
    text-decoration: underline;
}

.privacy-section a:hover {
    color: #3A9752;
}

/* RWD */
@media (max-width: 480px) {
    .privacy-page {
        padding: 36px 0 48px;
    }

    .privacy-title {
        font-size: 24px;
    }

    .privacy-updated {
        margin-bottom: 28px;
    }

    .privacy-content {
        padding: 24px 20px;
        border-radius: 8px;
    }

    .privacy-section h2 {
        font-size: 17px;
    }

    .privacy-section h3 {
        font-size: 15px;
    }

    .privacy-section p,
    .privacy-section ul li {
        font-size: 14px;
    }
}
