/**
 * Why Choose 模块样式
 */

.why-choose-module {
    padding: 80px 0;
    background-color: #fff;
}

.why-choose-title {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin: 0 0 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.title-divider {
    width: 100px;
    height: 2px;
    background-color: #ddd;
    margin: 0 auto 50px;
}

.why-choose-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.why-choose-item {
    display: flex;
    flex-direction: column;
}

.feature-image {
    width: 100%;
    margin-bottom: 25px;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.why-choose-item:hover .feature-image img {
    transform: scale(1.05);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.feature-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .why-choose-module {
        padding: 60px 0;
    }
    
    .why-choose-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .why-choose-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .why-choose-module {
        padding: 40px 0;
    }
    
    .why-choose-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-choose-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .title-divider {
        margin-bottom: 40px;
    }
    
    .feature-image {
        margin-bottom: 20px;
    }
    
    .feature-title {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .feature-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .why-choose-module {
        padding: 30px 0;
    }
    
    .why-choose-title {
        font-size: 24px;
    }
    
    .feature-title {
        font-size: 20px;
    }
    
    .feature-description {
        font-size: 14px;
    }
}
