/* purchase.html 专用样式 */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* 导航栏样式 - 版本2 (黄红渐变) */
header {
    background: linear-gradient(90deg, #ffcc00, #ff3b30);
    padding: 10px 0;
    position: relative;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 15px;
}

.nav a {
    color: #000000;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    transition: all 0.3s;
}

.nav a:hover {
    text-decoration: underline;
}

/* 主要内容区样式 */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px 20px;
}

.content-overlay {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    padding: 80px;
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.content-overlay h1 {
    font-size: 28px;
    font-weight: bold;
    color: #ffcc00;
    margin-bottom: 25px;
}

.content-overlay p {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: #ff9500;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(255, 149, 0, 0.5);
    margin-bottom: 30px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 149, 0, 0.8);
}

.cta-subtitle {
    color: #ffffff;
    font-size: 12px;
    margin-bottom: 30px;
}

.service-info {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: left;
}

.service-benefits {
    text-align: left;
    margin-bottom: 40px;
}

.service-benefits h3 {
    color: #ffcc00;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.service-benefits ul {
    list-style: none;
}

.service-benefits li {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.service-benefits li::before {
    content: "•";
    color: #ffffff;
    position: absolute;
    left: 0;
}

/* 常见问题部分 */
.faq-section {
    margin-top: 40px;
    text-align: left;
}

.faq-section h2 {
    color: #ffcc00;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
    text-align: center;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    color: #ffcc00;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.faq-item p {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .content-overlay {
        padding: 60px;
        margin: 20px;
    }
    
    .content-overlay h1 {
        font-size: 24px;
    }
    
    .content-overlay p,
    .service-info,
    .service-benefits li,
    .faq-item p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .content-overlay {
        padding: 40px;
        border-radius: 20px;
    }
    
    .content-overlay h1 {
        font-size: 20px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}
