.erp-hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    width: 100%;
    padding: 50px;
    background: linear-gradient(0deg, #f8fafc, #e0f2fe);
    flex-wrap: wrap;
}

.erp-hero-section-text {
    font-size: 1rem;
    color: var(--gray);
}

.erp-hero-image {
    width: 30vw;
    height: auto;
    max-height: 60vh;
    display: block;
    margin: 0 auto;
}

.erp-about-section {
    text-align: center;
}

.erp-about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.about-erp-title {
    font-size: 32px;
    font-weight: 700;
    color: #1b2a4e;
    margin-bottom: 20px;
}

.about-erp-text {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    text-align: start;
}

.erp-features {
    text-align: start;
    list-style: none;
    padding-left: 0;
}

.erp-features li {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 10px;
}

.erp-features i {
    color: var(--secondary);
    margin-right: 8px;
}

.erp-about-img {
    width: 100%;
}

/* why section */
.erp-why-section {
    text-align: center;
}

.erp-why-card {
    position: relative;
    background: #fff;
    border-top: 2px solid var(--secondary);
    border-right: 2px solid transparent;
    border-bottom: 2px solid transparent;
    border-left: 2px solid transparent;
    border-radius: 8px;
    padding: 40px 20px 20px 20px;
    box-sizing: border-box;
    box-shadow: 0 1px 5px rgb(0 0 0 / 0.09);
    transition: border-color 0.3s ease;
    text-align: center;
}

.erp-why-card:hover {
    border-color: var(--secondary);
}

.erp-icon-wrapper {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #fff;
    border-top: 2px solid var(--secondary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--secondary);
    font-size: 28px;
}

.erp-icon-wrapper .main-illustration {
    max-width: 40px;
    max-height: 40px;
}

.erp-why-card h5 {
    font-weight: 700;
    margin: 20px 0 10px 0;
    color: rgb(51, 48, 48);
}

.erp-why-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--gray);
}

/* process section */
.erp-process-container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    text-align: center;
}

.erp-process-card {
    position: relative;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 20px 15px 50px 15px;
    text-align: center;
    border: 3px solid transparent;
    background-clip: padding-box;
    transition: transform 0.3s ease;
}

/* Primary Style */
.primary .erp-process-number {
    background: var(--primary);
    color: white;
}

.primary::before {
    background: var(--primary);
}

/* Secondary Style */
.secondary .erp-process-number {
    background: var(--secondary);
    color: white;
}

.secondary::before {
    background: var(--secondary);
}

/* Gradient border */
.erp-process-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    z-index: -1;
    border-radius: 12px;
}

.erp-process-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--primary);
}

.erp-process-card h5 {
    font-weight: 700;
    margin: 20px 0 10px 0;
    color: rgb(51, 48, 48);
}

.erp-process-desc {
    font-size: 1rem;
    color: var(--gray);
}

.erp-process-number {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
    font-size: 16px;
    padding: 6px 14px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

@media (max-width: 1024px) {
    .erp-hero-section {
        padding: 40px 20px;
        text-align: start;
    }

    .erp-about-img {
        width: 90%;
    }

    .erp-hero-image {
        width: 35vw;
    }
}

@media (max-width: 768px) {
    .erp-hero-section {
        text-align: start;
    }

    .erp-hero-image {
        width: 45vw;
    }
}

@media (max-width: 576px) {
    .erp-hero-section {
        padding: 30px 15px;
        text-align: center;
    }

    .erp-hero-image {
        width: 60vw;
    }
}