/* Base Container */
.mcs-f9b4866c-container {
    background-color: #FDFBF7;
    padding: 60px 40px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    color: #4a4a4a;
}

/* Header */
.mcs-f9b4866c-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}
.mcs-f9b4866c-heading {
    color: #144632;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 16px;
    margin-top: 0;
}
.mcs-f9b4866c-subheading {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Steps Row */
.mcs-f9b4866c-steps-row {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    margin-bottom: 60px;
}

.mcs-f9b4866c-step-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Step Icons */
.mcs-f9b4866c-step-icon-wrap {
    width: 100px;
    height: 100px;
    background-color: #F4EBE0; /* Light beige */
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #144632;
    font-size: 40px;
    position: relative;
}
.mcs-f9b4866c-step-icon-wrap svg {
    width: 40px;
    height: 40px;
    fill: #144632;
}

.mcs-f9b4866c-step-title {
    color: #144632;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.mcs-f9b4866c-step-desc {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    padding: 0 10px;
}

/* WhatsApp Strip */
.mcs-f9b4866c-whatsapp-strip {
    background-color: #EEF3ED; /* Light green/cream */
    border-radius: 12px;
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.mcs-f9b4866c-wa-content {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}
.mcs-f9b4866c-wa-icon {
    color: #1FAF38; /* WhatsApp Green */
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}
.mcs-f9b4866c-wa-text {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: #333;
}
.mcs-f9b4866c-wa-btn {
    background-color: #144632;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}
.mcs-f9b4866c-wa-btn:hover {
    background-color: #0d2f21;
    color: #fff;
}

/* Desktop Layout */
@media (min-width: 768px) {
    .mcs-f9b4866c-steps-row {
        flex-direction: row;
        align-items: flex-start;
        gap: 0;
    }
    
    .mcs-f9b4866c-step-item {
        padding: 0 20px;
    }

    /* Connecting Arrows */
    .mcs-f9b4866c-step-item:not(:last-child)::after {
        content: '\2192'; /* Unicode right arrow */
        position: absolute;
        top: 50px; /* Align with middle of the 100px circle */
        right: -15px;
        transform: translateY(-50%);
        font-size: 24px;
        color: #8C948B; /* Thin arrow color */
        font-weight: 300;
        z-index: 0;
    }

    .mcs-f9b4866c-whatsapp-strip {
        flex-direction: row;
        justify-content: space-between;
    }
}