/* Services Section */
.services-section {
    background: white;
}

.service-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 35px;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #00d4aa;
}

.service-card .card-icon {
    width: 70px;
    height: 70px;
    background:#fff;    
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-card .card-icon img{
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-card .checklist {
    margin-bottom: 20px;
}

.service-card .checklist li {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.service-description {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

/* Industry Section */
.industry-section {
    background: #f8f9fa;
}

.industry-item {
    text-align: center;
    padding: 20px;
}

.industry-icon {
    width: 100px;
    height: 100px;    
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    transition: all 0.3s;
}
.industry-icon img{
    width: 100%;
    height: 100%;
}

.industry-item:hover .industry-icon {
    transform: scale(1.1);    
}

.industry-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.4;
}

/* Advantages Section */
.advantages-section {
    background: white;
}

.advantage-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

.advantage-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.advantage-icon {
    width: 80px;
    height: 80px;    
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
}
img{
    width: 100%;
    height: 100%;
}

.advantage-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.advantage-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 992px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-2,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .service-card,
    .advantage-card {
        padding: 25px;
    }
}
