﻿.enterprise-section {
    padding: 60px 20px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.service-card {
    background: #f9fbfc;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 25px;
    position: relative;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 0 0 transparent;
}

    .service-card:hover {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 18px;
    margin: 0;
    font-weight: 600;
}

.service-card p {
    color: #555;
    font-size: 15px;
    margin: 0;
}

.icon-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}
