.brandcore-service-process-wrapper {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.brandcore-service-process-main-title {
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 600;
    color: #1a202c;
}

.brandcore-service-process-inner {
    background: linear-gradient(90deg, #2BB673 0%, #0072BC 100%);
    border-radius: 30px;
    padding: 50px 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    display: inline-block;
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
    vertical-align: top;
}

.brandcore-process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.brandcore-process-card {
    background: #EBF8FF;
    border-radius: 25px;
    padding: 30px 20px;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.brandcore-process-card:hover {
    transform: translateY(-5px);
}

.brandcore-process-card-icon {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.brandcore-process-card-icon i,
.brandcore-process-card-icon svg {
    font-size: 28px;
    color: #2BB673;
}

.brandcore-process-card-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #0072BC;
}

.brandcore-process-arrow {
    font-size: 32px;
    color: #2BB673;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brandcore-process-arrow .mobile-arrow {
    display: none !important;
}

.brandcore-process-arrow .desktop-arrow {
    display: block !important;
}

.brandcore-process-arrow i,
.brandcore-process-arrow svg,
.brandcore-process-arrow img {
    width: 1em;
    height: 1em;
    fill: currentColor;
    display: block;
    object-fit: contain;
}

.brandcore-service-process-footer {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-top: 10px;
}

.brandcore-service-process-description {
    text-align: left;
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;    
    margin: 0 auto;
}

.brandcore-service-process-description p {
    margin-bottom: 20px;
}

/* Mobile & Tablet Styles */
@media (max-width: 767px) {
    .brandcore-service-process-main-title {
        font-size: 24px !important;
        margin-bottom: 20px !important;
    }

    .brandcore-service-process-wrapper {
        padding: 0 5px;
    }

    .brandcore-service-process-inner {
        padding: 15px 10px !important;
        width: 100% !important;
        display: block !important;
        border-radius: 20px !important;
        background: linear-gradient(90deg, #2BB673 0%, #0072BC 100%) !important;
        box-sizing: border-box !important;
    }

    .brandcore-process-steps {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 5px !important;
        justify-content: space-between !important;
        align-items: center !important;
        margin-bottom: 15px !important;
    }

    .brandcore-process-card {
        background: #EBF8FF !important;
        padding: 12px 6px !important;
        min-width: 0 !important;
        flex: 1 !important;
        border-radius: 15px !important;
        gap: 6px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        box-shadow: none !important;
    }

    .brandcore-process-card-icon {
        width: 36px !important;
        height: 36px !important;
        border-radius: 10px !important;
        background: #ffffff !important;
        flex-shrink: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 5px !important;
    }

    .brandcore-process-card-icon i,
    .brandcore-process-card-icon svg {
        font-size: 16px !important;
    }

    .brandcore-process-card-title {
        font-size: 10px !important;
        line-height: 1.2 !important;
        font-weight: 700 !important;
        color: #0072BC !important;
        margin: 0 !important;
    }

    .brandcore-process-arrow {
        font-size: 24px !important;
        color: #2BB673 !important;
        flex: 0 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        opacity: 1 !important;
    }

    .brandcore-process-arrow .desktop-arrow {
        display: none !important;
    }

    .brandcore-process-arrow .mobile-arrow {
        display: block !important;
    }

    .brandcore-process-arrow img,
    .brandcore-process-arrow svg {
        width: 32px !important;
        height: auto !important;
    }

    .brandcore-service-process-footer {
        font-size: 14px !important;
        margin-top: 5px !important;
        font-weight: 700 !important;
        color: #ffffff !important;
    }

    .brandcore-service-process-description {
        font-size: 14px !important;
        padding: 0 10px !important;
        margin-top: 20px !important;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .brandcore-process-card {
        min-width: 140px;
        padding: 20px 10px;
    }
    
    .brandcore-process-card-title {
        font-size: 16px;
    }

    .brandcore-process-arrow {
        padding: 0 5px;
    }
}
