/* Section Background */
.ecm-section {
    background-color: #ffffff;
    padding: 0px 20px;
}

/* Container */
.ecm-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Heading */
.ecm-title {
    color: black;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.ecm-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 50px;
}

/* Cards Grid */
.ecm-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
}

/* Card */
.ecm-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    padding: 40px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 280px;
}

.ecm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

/* Icon */
.ecm-icon {
    width: 70px;
    height: 70px;
    background-color: #a8d5c7;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
}

.ecm-icon img {
    width: 40px;
    height: 40px;
}

/* Step Number */
.ecm-step {
    color: black;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 28px;
}

/* Card Title */
.ecm-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Card Text */
.ecm-card-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .ecm-section {
        padding: 60px 15px;
    }

    .ecm-card {
        padding: 30px 15px;
    }
}
