* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.privacy-page {
    position: relative;
    width: 100%;
}

.privacy-main {
    background-image: url('/images/img-page-bg.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% 100%;
    background-attachment: fixed;
}


.privacy-hero {
    position: relative;
    z-index: 1;
    padding: 0 clamp(20px, 8.33vw, 120px);
}

.privacy-text {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    margin: 0 auto;
    max-width: 1200px;
    padding: clamp(40px, 5.56vw, 60px) 0 clamp(40px, 10vw, 200px);
    z-index: 1;
}

.privacy-breadcrumb {
    position: relative;
    top: auto;
    left: auto;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(96px, 12vw, 150px) 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.breadcrumb-link {
    text-decoration: none;
    color: #051243;
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 400;
    line-height: 24px;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.breadcrumb-link:hover {
    opacity: 0.6;
}

.breadcrumb-separator {
    background: url('/images/icon-right.png') no-repeat center center;
    width: clamp(12px, 1.5vw, 14px);
    height: clamp(12px, 1.5vw, 14px);
    background-size: contain;
}

.breadcrumb-current {
    color: #051243;
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
}

.privacy-title {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 600;
    margin-bottom: clamp(24px, 4vw, 40px);
    color: #051243;
    line-height: 1.2;
}

.privacy-subtitle {
    margin: 0 0 clamp(8px, 1.5vw, 12px) 0;
    color: #051243;
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 600;
    line-height: clamp(24px, 3vw, 28px);
}

.privacy-paragraph {
    margin-bottom: clamp(24px, 4vw, 40px);
    color: #051243;
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 400;
    line-height: clamp(22px, 2.5vw, 24px);
}


/* =========================================
   Responsive Design (响应式)
   ========================================= */

/* Tablet (max-width: 1200px) */
@media (max-width: 1200px) {
    .privacy-hero {
        padding: 0 clamp(16px, 5vw, 80px);
    }
    
    .privacy-text {
        padding: clamp(30px, 4vw, 50px) 0;
    }
}

/* Tablet Small (max-width: 968px) */
@media (max-width: 968px) {
    
    .privacy-breadcrumb {
        padding: clamp(80px, 10vw, 120px) 0 0;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .privacy-hero {
        padding: 0 16px;
    }
    
    .privacy-breadcrumb {
        padding: clamp(60px, 8vw, 100px) 0 0;
        gap: 6px;
    }
    
    .breadcrumb-link,
    .breadcrumb-current {
        font-size: 14px;
        line-height: 20px;
    }
    
    .breadcrumb-separator {
        width: 12px;
        height: 12px;
    }
    
    .privacy-text {
        padding: clamp(24px, 4vw, 40px) 0;
    }
    
    .privacy-title {
        font-size: clamp(20px, 5vw, 24px);
        margin-bottom: 24px;
    }
    
    .privacy-subtitle {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 8px;
    }
    
    .privacy-paragraph {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 24px;
    }
    
    #footer {
        margin-top: 60px;
    }
}

/* Mobile Small (max-width: 480px) */
@media (max-width: 480px) {
    
    .privacy-breadcrumb {
        padding: clamp(50px, 6vw, 80px) 0 0;
        flex-wrap: wrap;
    }
    
    .breadcrumb-link,
    .breadcrumb-current {
        font-size: 12px;
        line-height: 18px;
    }
    
    .breadcrumb-separator {
        width: 10px;
        height: 10px;
    }
    
    .privacy-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .privacy-subtitle {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 6px;
    }
    
    .privacy-paragraph {
        font-size: 13px;
        line-height: 20px;
        margin-bottom: 20px;
    }
    
    #footer {
        margin-top: 40px;
    }
}
.privacy-clause {
    color: #4A4D56;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: clamp(24px, 4vw, 40px);
}

@media (max-width: 768px) {
    .privacy-clause {
        font-size: 14px;
        line-height: 22px;
        margin-top: 12px;
        margin-bottom: 24px;
    }
}
@media (max-width: 480px) {
    .privacy-clause {
        font-size: 13px;
        line-height: 20px;
        margin-top: 12px;
        margin-bottom: 20px;
    }
}