/* =========================
   OUR APPROACH – FLOW STYLE
========================= */
.approach-flow-section {
    width: 100%;
    padding: 80px 20px;
    background: #ffffff;
    display: flex;
    justify-content: center;
}

.approach-flow-container {
    max-width: 1000px;
    width: 100%;
}

/* Header */
.approach-header {
    text-align: left;
    margin-bottom: 60px;
}

.approach-header h2 {
    font-size: 44px;
    font-weight: 700;
    color: #192850;
    margin-bottom: 15px;
}

.approach-header p {
    font-size: 18px;
    color: #444;
    max-width: 700px;
    line-height: 1.7;
}

/* Flow Layout */
.approach-flow {
    display: flex;
    flex-direction: column;
    gap: 45px;
    position: relative;
}

/* Vertical Line */
.approach-flow::before {
    content: "";
    position: absolute;
    left: 32px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #e5e9f2;
}

/* Flow Item */
.flow-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    position: relative;
}

/* Number */
.flow-number {
    min-width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #192850;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Content */
.flow-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #192850;
    margin-bottom: 8px;
}

.flow-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    max-width: 650px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .approach-header h2 {
        font-size: 34px;
    }

    .approach-header p {
        font-size: 16px;
    }

    .approach-flow::before {
        left: 26px;
    }

    .flow-number {
        min-width: 52px;
        height: 52px;
        font-size: 16px;
    }

    .flow-content h3 {
        font-size: 18px;
    }

    .flow-content p {
        font-size: 15px;
    }
}

/* @media (max-width: 480px) {
    .approach-flow-section {
        padding: 60px 15px;
    }

    .approach-header {
        text-align: center;
    }

    .approach-flow::before {
        display: none;
    }

    .flow-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .flow-content p {
        max-width: 100%;
    }
} */
