/* Header style - blue at top, white when scrolling */
.header {
    background-color: transparent !important;
    height: 130px !important;
    transition: background-color 0.3s ease !important;
}

/* At top - white logo and nav */
.header .nav-logo svg {
    fill: #fff !important;
}

.header .main-navigation ul li > a {
    color: #fff !important;
}

.header .main-navigation ul li.ing > a {
    color: #fff !important;
}

/* When scrolling - white background, dark text */
.header.scroll {
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

.header.scroll .nav-logo svg {
    fill: #1c2c3c !important;
}

.header.scroll .main-navigation ul li > a {
    color: #1c2c3c !important;
}

.header.scroll .main-navigation ul li.ing > a {
    color: var(--secondary-color) !important;
}

/* Responsive */
@media (max-width: 968px) {
    .header {
        height: 90px !important;
    }
    
    .header.scroll .mobile-menu-toggle .menu-icon-line {
        background-color: #1c2c3c !important;
    }
    
    .header .mobile-menu-toggle .menu-icon-line {
        background-color: #fff !important;
    }
}

/* Privacy policy info list */
.privacy-info-list {
    margin-left: 30px;
    margin-bottom: 15px;
}

.privacy-info-item {
    margin-bottom: 10px;
}

/* 正文區塊共用（privacy-policy / cookie-policy） */
.page-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #3d5a80 100%);
    padding: 100px 20px;
    text-align: center;
    color: #fff;
}
.page-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.page-hero h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 30px;
    font-family: 'Big Caslon', serif;
    letter-spacing: 2px;
}
.page-hero p {
    font-size: 16px;
    opacity: 0.9;
    font-family: 'Nunito Sans', sans-serif;
}

.page-content-wrap {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}
.page-content-card {
    background: #fff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.page-content-body {
    line-height: 1.8;
    color: #333;
    font-family: 'Nunito Sans', sans-serif;
}
.page-content-section {
    margin-bottom: 40px;
}
.page-content-section:last-of-type {
    margin-bottom: 0;
}
.page-content-section h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}
.page-content-section p {
    margin-bottom: 15px;
}
.page-content-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    color: #999;
    font-size: 14px;
}
