/* 隱私政策頁面樣式 */

/* 頁面標題區域 */
.privacy-hero {
    padding: 80px 0 60px;
    background: #ffffff;
    border-bottom: 1px solid #e3e5ea;
}

.privacy-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.privacy-update-date {
    font-size: 16px;
    color: var(--light-text);
    margin: 0;
}

/* 主要內容區域 */
.privacy-content-section {
    padding: 80px 0 100px;
    background: #ffffff;
}

.privacy-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* 側邊欄導航 */
.privacy-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.privacy-nav {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px 20px;
    border: 1px solid #e3e5ea;
}

.privacy-nav h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-gold);
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-list li {
    margin-bottom: 12px;
}

.nav-list li:last-child {
    margin-bottom: 0;
}

.nav-link {
    display: block;
    font-size: 14px;
    color: var(--text-color);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.nav-link:hover {
    background: rgba(255, 207, 112, 0.1);
    color: var(--primary-gold);
    transform: translateX(4px);
}

.nav-link.active {
    background: rgba(255, 207, 112, 0.15);
    color: var(--primary-gold);
    font-weight: 600;
}

/* 主要內容 */
.privacy-main-content {
    background: #ffffff;
}

.privacy-section {
    margin-bottom: 48px;
    scroll-margin-top: 100px;
}

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

.privacy-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 24px 0;
    line-height: 1.3;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--primary-gold);
}

.privacy-section h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 32px 0 16px 0;
    line-height: 1.4;
}

.privacy-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0 0 20px 0;
}

.privacy-section ul {
    margin: 20px 0;
    padding-left: 24px;
}

.privacy-section li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 12px;
}

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

.privacy-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

.privacy-section a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.privacy-section a:hover {
    color: var(--gold-dark);
    border-bottom-color: var(--gold-dark);
}

/* 聯絡資訊 */
.contact-info {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 32px;
    margin: 32px 0;
    border: 1px solid #e3e5ea;
}

.contact-item {
    margin-bottom: 0;
}

.contact-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 16px 0;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

.contact-item a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

/* 響應式設計 */
@media (max-width: 1024px) {
    .privacy-wrapper {
        grid-template-columns: 240px 1fr;
        gap: 40px;
    }

    .privacy-sidebar {
        top: 80px;
    }
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 60px 0 40px;
    }

    .privacy-header h1 {
        font-size: 32px;
    }

    .privacy-content-section {
        padding: 60px 0 80px;
    }

    .privacy-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .privacy-sidebar {
        position: relative;
        top: 0;
    }

    .privacy-nav {
        position: relative;
    }

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

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

    .contact-info {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .privacy-hero {
        padding: 40px 0 30px;
    }

    .privacy-header h1 {
        font-size: 28px;
    }

    .privacy-update-date {
        font-size: 14px;
    }

    .privacy-content-section {
        padding: 40px 0 60px;
    }

    .privacy-wrapper {
        padding: 0 15px;
    }

    .privacy-nav {
        padding: 20px 16px;
    }

    .privacy-nav h3 {
        font-size: 16px;
    }

    .nav-link {
        font-size: 13px;
        padding: 6px 10px;
    }

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

    .privacy-section h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .privacy-section h3 {
        font-size: 18px;
        margin: 24px 0 12px 0;
    }

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

    .contact-info {
        padding: 20px;
    }

    .contact-item h4 {
        font-size: 18px;
    }
}

