/* ══════════════════════════════════════════
   Gandhi Immigration – About Approach Section
   ══════════════════════════════════════════ */

.gandhi-about-approach-section {
    padding: 0 0 80px;
    background: #fff;
}

.gandhi-approach-container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* ── Left Image ── */
.gandhi-approach-image {
    flex: 0 0 480px;
    max-width: 480px;
}

.gandhi-approach-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── Right Content ── */
.gandhi-approach-content {
    flex: 1;
}

/* ── Badge ── */
.gandhi-approach-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #F57D26;
    padding: 6px 16px;
    border: 1px solid #F57D26;
    border-radius: 30px;
    margin-bottom: 20px;
}

.gandhi-approach-badge-arrow {
    font-size: 8px;
}

.gandhi-approach-badge-icon {
    font-size: 16px;
}

/* ── Subtitle ── */
.gandhi-approach-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    line-height: 1.5;
    margin: 0 0 28px;
}

/* ── List ── */
.gandhi-approach-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gandhi-approach-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    line-height: 1.5;
}

.gandhi-approach-list li .gandhi-approach-arrow {
    color: #000000;
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .gandhi-approach-image {
        flex: 0 0 380px;
        max-width: 380px;
    }
}

@media (max-width: 900px) {
    .gandhi-approach-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .gandhi-approach-image {
        flex: none;
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
    }

    .gandhi-approach-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .gandhi-approach-subtitle {
        text-align: center;
    }

    .gandhi-approach-list {
        text-align: left;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .gandhi-about-approach-section {
        padding: 20px 0;
    }

    .gandhi-approach-subtitle {
        font-size: 16px;
    }

    .gandhi-approach-list li {
        font-size: 14px;
    }
}
