.db-hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    padding: 60px 20px;
    background: linear-gradient(0deg, #f8fafc, #e0f2fe);
    flex-wrap: wrap;
}

.db-hero-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray);
}

.main-illustration {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* about section */
.db-about-section {
    text-align: center;
    justify-content: center;
}

.db-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.db-about-text {
    font-size: 1rem;
    color: var(--gray);
    text-align: start;
}

.db-about-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.db-about-feature-list li {
    font-size: 1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: var(--gray);
    font-weight: 700;
}

.db-about-feature-list .db-about-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: var(--primary);
    color: white;
    font-weight: bold;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    margin-right: 10px;
    font-size: 14px;
}

/* benefits section */
.db-benefits-section {
    text-align: center;
}

.db-benefits-card {
    /* height: 300px; */
    background: #fff;
    border: 1px solid var(--secondary);
    border-radius: 20px;
    padding: 30px 20px 50px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: transform 0.3s;
}

.db-benefits-card:hover {
    transform: translateY(-5px);
    background: #fa923d36;
}

.db-benefits-card h5 {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.db-benefits-card p {
    color: var(--gray);
    font-size: 1rem;
}

.db-line-decor {
    bottom: 0;
    left: 40%;
    width: 100px;
    height: 4px;
    border-radius: 4px;
    position: absolute;
    background: var(--secondary);
}

/* process section */
.db-process-section {
    text-align: center;
}

.db-process-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e5e7eb;
}

.db-process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.db-process-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-top: 50px solid var(--primary);
    border-right: 50px solid transparent;
    border-radius: 18px 0 0 0;
}

.db-process-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.db-process-card p {
    font-size: 1rem;
    color: var(--gray);
    margin: 0;
}

.db-process-icon {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  }
  
  .db-step-number {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
  }

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

@media (max-width: 992px) {
    .db-hero-section {
        text-align: center;
    }

    .db-about-feature-list li {
        font-size: 15px;
    }
}

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

    .db-about-feature-list li {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .db-about-feature-list .db-about-icon {
        width: 24px;
        height: 24px;
        font-size: 12px;
        margin-right: 8px;
    }

}