/* 蒙文版本专用样式 */
body {
    font-family: 'Poppins', sans-serif;
}

/* 数字统计区域样式 */
.stats-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stats-icon {
    width: 48px;
    height: 48px;
    background-color: #008E3E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.stats-icon i {
    font-size: 1.25rem;
}

.stats-content {
    flex-grow: 1;
}

.stats-number {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.stats-label {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0;
}

/* 其他通用样式 */
.section-title h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-title span {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* 导航栏字体调整 */
.navbar .nav-link {
    font-size: 0.9rem;
    letter-spacing: -0.5px;
    padding: 8px 10px !important;
}

/* 轮播图标题 */
.carousel-caption h2 {
    font-size: 2rem;
    font-weight: 700;
    max-width: 90%;
    margin: 0 auto 1rem;
    line-height: 1.3;
}

.carousel-caption p {
    font-size: 0.95rem;
    max-width: 85%;
    margin: 0 auto;
    line-height: 1.4;
}

/* 调整卡片内容 */
.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
}

.card-text {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* 合作伙伴卡片 */
.partner-card .card-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.partner-card .card-text {
    font-size: 0.85rem;
}

/* 服务卡片 */
.service-card .card-title {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.service-card .card-text {
    font-size: 0.85rem;
}

/* 页脚样式 */
footer h5 {
    font-size: 1rem;
}

footer p, footer li, footer a {
    font-size: 0.85rem;
}

/* 特性部分 */
.feature-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* 按钮样式 */
.btn {
    font-size: 0.9rem;
    padding: 0.5rem 1.25rem;
}

.btn-lg {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .carousel-caption h2 {
        font-size: 1.5rem;
    }
    
    .carousel-caption p {
        font-size: 0.85rem;
    }
    
    .section-title h2 {
        font-size: 1.75rem;
    }
} 