* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
    background: #f8f8fb;
}

/* 导航栏 */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 80px;
    background: rgba(11, 12, 14, 0.08);
    z-index: 1000;
}

.logo {
    height: 38px;
    img {
        height: 100%;
    }
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
}

/* 页脚 */
.footer {
    padding: 40px 60px;
    text-align: center;
}

.footer p {
    font-size: 13px;
    color: #8D91A5;
    margin-bottom: 12px;
}

/* 联系方式区 */
.contact-section {
    padding: 120px 80px;
    max-width: 1200px;
    text-align: center;
    margin: 0 auto;
}

.contact-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 600;
    color: #2b2350;
}

.contact-subtitle {
    color: #666;
    margin-bottom: 80px;
    font-size: 15px;
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    width: 100%;
    margin: 0 auto;
}

.contact-item {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex: 1;
    color: #241259;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item p {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    font-weight: 400;
}


/* 内容区域 */
.update-date {
    font-size: 16px;
    color: #5A5E72;
    line-height: 150%;
}

.intro-text {
    font-size: 16px;
    color: #5A5E72;
    line-height: 150%;
    margin-bottom: 48px;
}
.section {
    margin-bottom: 48px;
}

.section-title{
    color: #241259;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.section-content {
    font-size: 16px;
    color: #5A5E72;
    line-height: 150%;
}

.section-content ul {
    list-style: none;
    padding-left: 0;
}

.section-content li {
    margin-bottom: 8px;
    padding-left: 0;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 120%;
    color: #241259;
    text-align: center;
    margin-bottom: 60px;
}