* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
}

body {
    background-color: #f0f8ff;
    color: #333;
    line-height: 1.6;
    padding: 0;
    margin: 0;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 页头样式 */
header {
    text-align: center;
    padding: 40px 20px 30px;
    margin-bottom: 20px;
}

.logo {
    font-size: 2.8rem;
    color: #1e6bb8;
    margin-bottom: 10px;
    letter-spacing: 3px;
    font-weight: 700;
}

/* 主要区域样式 - 修改为每行一个内容 */
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.service-section {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 100, 0.05);
    padding: 25px;
    width: 100%;
    max-width: 900px;
    transition: transform 0.3s ease;
    margin-bottom: 10px;
}

.service-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 100, 0.08);
}

.section-title {
    color: #1e6bb8;
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e6f2ff;
    display: flex;
    align-items: center;
}

.section-title i {
    margin-right: 12px;
}

.section-note {
    color: #5a7d9a;
    margin-bottom: 20px;
    font-style: italic;
}

/* 表格样式 */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
}

.price-table th {
    background-color: #f0f8ff;
    color: #1e6bb8;
    font-weight: 600;
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #d9eaf7;
}

.price-table td {
    padding: 14px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table .item-name {
    font-weight: 600;
    color: #2c3e50;
    width: 30%;
}

.price-table .price-detail {
    color: #555;
}

.price-table .extra-info {
    color: #7f8c8d;
    font-size: 0.95rem;
}

/* 特惠套餐样式 */
.package-highlight {
    background-color: #fff9e6;
    border-left: 4px solid #ffcc00;
}

.discount-badge {
    background-color: #ff6b6b;
    color: white;
    font-size: 0.85rem;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 8px;
    font-weight: 500;
}

.recommended {
    color: #ff6b6b;
    font-weight: 600;
    font-size: 0.9rem;
}

.limit-note {
    font-size: 0.85rem;
    color: #7f8c8d;
}

.gift-note {
    color: #27ae60;
}

/* 页脚样式 */
footer {
    text-align: center;
    padding: 25px;
    color: #5a7d9a;
    border-top: 1px solid #e6f2ff;
    margin-top: 20px;
    font-size: 0.95rem;
}

.contact-info {
    margin-bottom: 10px;
}

.disclaimer {
    background-color: #fff9e6;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #8a6d3b;
    border: 1px solid #ffecb3;
}

.copyright {
    margin-top: 20px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .logo {
        font-size: 2.2rem;
    }

    .service-section {
        padding: 20px;
        max-width: 100%;
    }

    .price-table {
        display: block;
        overflow-x: auto;
    }

    .price-table th,
    .price-table td {
        padding: 10px 8px;
        font-size: 0.95rem;
    }

    main {
        gap: 20px;
    }
}

/* 空白区域控制 */
.white-space {
    height: 40px;
}

/* 打印社特色装饰 */
.printer-icon {
    display: inline-block;
    background-color: #e6f2ff;
    padding: 8px;
    border-radius: 50%;
    margin-right: 10px;
}