/* 固定导航栏样式 */
.floating-nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    background: rgba(24, 24, 35, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
    border-bottom: 1px solid rgba(212, 180, 131, 0.3);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    font-size: 36px;
    color: var(--accent-gold);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--light-text);
    letter-spacing: 1.5px;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-text span {
    font-size: 16px;
    color: var(--accent-gold);
    letter-spacing: 4px;
    font-weight: 500;
    margin-top: 4px;
}

.nav-menu {
    display: flex;
    gap: 45px;
    list-style: none;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
    letter-spacing: 0.8px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--dark-gold) 100%);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* 下拉菜单样式 */
.has-submenu {
    position: relative;
}

.has-submenu>.nav-link::after {
    display: none;
}

.submenu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: linear-gradient(135deg, rgba(26, 64, 94, 0.98) 0%, rgba(24, 24, 35, 0.98) 100%);
    min-width: 280px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    padding: 15px 0;
    border-radius: 5px;
    z-index: 100;
    border: 1px solid rgba(212, 180, 131, 0.2);
}

.submenu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid rgba(26, 64, 94, 0.98);
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu-link {
    display: flex;
    align-items: center;
    padding: 12px 30px;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
    gap: 12px;
    position: relative;
}

.submenu-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

.submenu-link:hover {
    background: rgba(212, 180, 131, 0.1);
    color: var(--accent-gold);
}

.submenu-link:hover::before {
    height: 100%;
}

.submenu-link i {
    font-size: 14px;
    color: var(--accent-gold);
}

/* 轮播图区域 */
.banner {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 90px;
}

.slides {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(75deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.slide-content {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    color: var(--light-text);
}

.slide-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.15;
    letter-spacing: 0.5px;
    color: var(--accent-gold);
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

.slide-desc {
    font-size: 1.6rem;
    margin-bottom: 45px;
    max-width: 800px;
    opacity: 0.92;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

.cta-container {
    display: flex;
    gap: 25px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: transparent;
    color: var(--light-text);
    padding: 20px 45px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button.primary {
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--dark-gold) 100%);
    box-shadow: 0 10px 25px rgba(180, 147, 96, 0.35);
}

.cta-button.secondary {
    border: 2px solid var(--accent-gold);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.6s ease;
    transform: skewX(-25deg);
    z-index: -1;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.cta-button:hover.primary {
    background: linear-gradient(90deg, var(--dark-gold) 0%, var(--accent-gold) 100%);
}

/* 轮播导航控制 */
.slide-indicators {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}

.indicator {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.indicator.active {
    background-color: var(--accent-gold);
    transform: scale(1.2);
    box-shadow: 0 0 15px var(--accent-gold);
    border-color: var(--dark-text);
}

/* 轮播背景图样式 */
.slide-1 {
    background-image: linear-gradient(rgba(24, 24, 35, 0.7), rgba(24, 24, 35, 0.85)),
        url('../images/photo-1608889476518-738c9b1dcb40.avif');
}

.slide-2 {
    background-image: linear-gradient(rgba(26, 64, 94, 0.7), rgba(26, 64, 94, 0.85)),
        url('../images/photo-1497366811353-6870744d04b2.avif');
}

.slide-3 {
    background-image: linear-gradient(rgba(24, 24, 35, 0.7), rgba(24, 24, 35, 0.85));
}

/* 内容区域 */
.section {
    padding: 100px 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: 3.5rem;
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-gold);
}

.section-subtitle {
    font-size: 1.6rem;
    color: var(--secondary-blue);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.85;
}

/* 服务卡片 */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.service-img {
    height: 250px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
}

.service-title {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-title i {
    color: var(--accent-gold);
    font-size: 2.5rem;
}

.service-desc {
    font-size: 1.1rem;
    color: var(--dark-text);
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--dark-gold);
    gap: 15px;
}

/* 实践领域部分 */
.practice-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.4rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.practice-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.practice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.practice-img {
    height: 180px;
    background: linear-gradient(120deg, var(--primary-blue), var(--secondary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 3.5rem;
}

.practice-content {
    padding: 25px;
}

.practice-amount {
    font-size: 1.8rem;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.practice-title {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.practice-description {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.learn-more:hover {
    color: var(--accent-gold);
    gap: 12px;
}

/* 我们致力于 */
.hero-section {
    padding: 180px 0 100px;
    background: linear-gradient(rgba(12, 44, 68, 0.92), rgba(12, 44, 68, 0.92)),
        url('https://images.unsplash.com/photo-1611974789855-9c2a0a7239a3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    color: var(--text-light);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 35px;
    line-height: 1.9;
    opacity: 0.9;
}

.hero-btn {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 14px 35px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.hero-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.hero-img-container {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.hero-img-container img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.hero-img-container:hover img {
    transform: scale(1.1);
}

/* 团队部分 */
.team-section {
    background: linear-gradient(rgba(24, 24, 35, 0.95), rgba(24, 24, 35, 0.95)),
        url('https://images.unsplash.com/photo-1551830820-330a71b99659?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-attachment: fixed;
    background-size: cover;
    color: var(--light-text);
    padding: 120px 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(212, 180, 131, 0.2);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.team-img {
    height: 350px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-content {
    padding: 30px;
    text-align: center;
}

.team-name {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--accent-gold);
}

.team-position {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.team-desc {
    font-size: 1.05rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 180, 131, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-gold);
    color: var(--primary-blue);
    transform: translateY(-5px);
}

/* 统计数据 */
.stats-section {
    padding: 100px 80px;
    background: var(--light-bg);
}

.stats-container {
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px; */
    text-align: center;


    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 三列等宽 */
    grid-auto-rows: minmax(150px, auto);
    gap: 20px;
}

.stat-item {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.stat-item:nth-child(4) {
    grid-column: span 2;
    background: rgba(24, 24, 35, 0.95);
    color: var(--accent-gold);
}

.stat-item:nth-child(4) .stat-label {
    color: var(--accent-gold);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 4rem;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--primary-blue);
    font-weight: 500;
}

/* 联系区域 */
.contact-section {
    background: linear-gradient(rgba(24, 24, 35, 0.92), rgba(24, 24, 35, 0.92)),
        url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-attachment: fixed;
    padding: 120px 80px;
    color: var(--light-text);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    padding-right: 50px;
}

.contact-title {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: var(--accent-gold);
}

.contact-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 1.8rem;
    color: var(--accent-gold);
}

.contact-text {
    font-size: 1.2rem;
}

.contact-text strong {
    display: block;
    margin-bottom: 5px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    font-size: 1.1rem;
    font-family: 'Noto Serif SC', serif;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px var(--accent-gold);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* 装饰元素 */
.law-icon {
    position: absolute;
    opacity: 0.03;
    font-size: 450px;
    color: var(--accent-gold);
    z-index: 0;
}

.icon-1 {
    top: -100px;
    right: -80px;
    transform: rotate(20deg);
}

.icon-2 {
    bottom: -120px;
    left: -80px;
    transform: rotate(-15deg);
}

/* 移动菜单样式 */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--light-text);
    cursor: pointer;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    z-index: 2000;
    padding: 80px 30px 30px;
    overflow-y: auto;
    transition: var(--transition);
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    color: var(--accent-gold);
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-nav-menu {
    list-style: none;
}

.mobile-nav-item {
    margin-bottom: 5px;
}

.mobile-nav-link {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 18px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 180, 131, 0.1);
    transition: var(--transition);
}

.mobile-nav-link:hover {
    color: var(--accent-gold);
    padding-left: 15px;
}

.mobile-nav-link i {
    margin-right: 10px;
    width: 25px;
    text-align: center;
}

/* 背景覆盖 */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}



/* 响应式设计 */
@media (max-width: 1200px) {


    .hero-section .hero-container{
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.4rem;
    }
    
    .floating-nav {
        padding: 0 50px;
    }

    .section,
    .team-section,
    .contact-section,
    .stats-section,
    .footer {
        padding: 80px 50px;
    }

    .slide-content {
        padding: 0 50px;
    }

    .slide-title {
        font-size: 3.8rem;
    }
}

@media (max-width: 992px) {
    .floating-nav {
        padding: 0 40px;
        height: 80px;
    }

    .logo-text h1 {
        font-size: 26px;
    }

    .logo-text span {
        font-size: 13px;
        letter-spacing: 0;
    }

    .logo-icon {
        font-size: 28px;
        width: 50px;
        height: 50px;
    }

    .nav-menu {
        gap: 22px;
    }

    .nav-link {
        font-size: 16px;
    }

    .slide-title {
        font-size: 3.2rem;
    }

    .slide-desc {
        font-size: 1.4rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-nav.active{
        left: 0;
        top: 60px
    }
    .floating-nav {
        height: 70px;
        padding: 0 30px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 24px;
        color: var(--light-text);
        background: none;
        border: none;
        cursor: pointer;
    }

    .slide-title {
        font-size: 2.8rem;
    }

    .slide-desc {
        font-size: 1.2rem;
        max-width: 100%;
    }

    .cta-container {
        flex-direction: column;
        gap: 15px;
    }


    .stat-item:nth-child(4) {
        grid-column: span 1;
        /* grid-row: span 2; */
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .section {
        padding: 70px 30px;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .team-section,
    .contact-section,
    .stats-section {
        padding: 70px 30px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .stats-section {
        padding: 0;
    }
    .stats-section .container{
        padding: 0;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        grid-auto-rows: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        padding-right: 0;
    }

    .footer {
        padding: 60px 30px 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .mobile-nav.active{
        left: 0;
        top: 60px
    }
    .floating-nav {
        padding: 0 20px;
        height: 60px;
    }

    .logo-icon {
        font-size: 22px;
        width: 40px;
        height: 40px;
    }

    .logo-text h1 {
        font-size: 22px;
    }

    .logo-text span {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .slide-title {
        font-size: 2.3rem;
    }

    .slide-desc {
        font-size: 1.1rem;
    }

    .slide-indicators {
        bottom: 40px;
    }

    .section-title {
        font-size: 2.3rem;
    }

    .section {
        padding: 60px 20px;
    }

    .stat-number {
        font-size: 3.2rem;
    }
}