/* 首页样式 - 现代简洁设计 */

/* 英雄区域样式 */
.hero-section {
    background: linear-gradient(135deg, #5AAC2C 0%, #7cc254 100%);
    padding: 150px 0;
    padding-bottom: 80px;
    color: white;
    text-align: center;
    border-radius: 0px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-button {
    background: white;
    color: #5AAC2C;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero-button i {
    transition: transform 0.3s ease;
}

.hero-button:hover i {
    transform: translateX(5px);
}

/* 区块标题样式 */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #5AAC2C, #7cc254);
    border-radius: 3px;
}

.section-description {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 更多工具区域样式 */
.more-tools-section {
    margin: 80px 0;
    text-align: center;
}

.explore-more-btn {
    background: linear-gradient(90deg, #5AAC2C, #7cc254);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(90, 172, 44, 0.3);
    transition: all 0.3s ease;
}

.explore-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(90, 172, 44, 0.4);
}

.explore-more-btn i {
    font-size: 20px;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 30px;
    }
    
    .hero-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .more-tools-section {
        margin: 60px 0;
    }
    
    .explore-more-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 50px 0;
        padding-top: 80px;
        border-radius: 0 0 20px 20px;
    }
    .container{
        padding: 20px;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .hero-button {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    .explore-more-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}