@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700&display=swap');

body {
    font-family: 'Noto Sans SC', sans-serif;
    color: #333;
    background-color: #f8f9fa;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: #1e88e5;
    color: white;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1976d2;
}

.btn-secondary {
    background-color: #ff9800;
    color: white;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #f57c00;
}

.module-title {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.module-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #1e88e5;
}

.footer-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.footer-menu-btn {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-menu-btn:hover {
    opacity: 0.9;
}

.header-bg {
    background: linear-gradient(135deg, #1e88e5 0%, #64b5f6 100%);
}

.highlight-text {
    color: #1e88e5;
    font-weight: 500;
}

.package-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-header {
    background: linear-gradient(135deg, #1e88e5 0%, #64b5f6 100%);
    color: white;
    padding: 20px;
    text-align: center;
}

.package-body {
    padding: 20px;
    background-color: white;
}

.package-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.package-feature i {
    color: #4caf50;
    margin-right: 10px;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.faq-question {
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    margin-top: 10px;
    color: #666;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.process-step {
    display: flex;
    margin-bottom: 30px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #1e88e5;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-weight: 500;
    margin-bottom: 5px;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e0e0e0;
    margin-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666;
    font-weight: bold;
    font-size: 20px;
}

.testimonial-info h4 {
    margin: 0;
    font-weight: 500;
}

.testimonial-info p {
    margin: 5px 0 0;
    color: #666;
    font-size: 14px;
}

.testimonial-content {
    color: #666;
    line-height: 1.6;
}

.rating {
    color: #ff9800;
    margin-top: 10px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .module-title {
        font-size: 20px;
    }
    
    .process-step {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 10px;
    }
}

/* 确保内容不被底部菜单遮挡 */
body {
    padding-bottom: 70px;
}