/* ===== Estilos generales ===== */
.services-row {
    background-color: #eaf6fc; /* Fondo como en la imagen */
    padding: 50px 0;
    height: 100%;
}

/* Tarjeta de servicio */
.services-row .service-card {
    border: 1.5px solid #2da8e0; /* Borde azul */
    border-radius: 20px;
    background-color: #fff;
    display: flex;
    align-items: center;
    height: 100%;
    transition: all 0.3s ease;
}

.services-row .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Ícono */
.services-row .icon {
    background-color: #2da8e0 !important;
    color: white;
    width: 80px !important;
    height: 80px !important;
    border-radius: 15px !important;
    font-size: 1.8rem;
    flex-shrink: 0;
}

/* Texto */
.services-row h6 {
    color: #000;
    font-weight: 700;
}

.services-row p {
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Espaciado entre columnas */
.services-row .col-md-4 {
    display: flex;
}
