*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: #FFFBEF;
    color: #4A4466;
}

/*  Section  */
.OurApproachSection {
    background: #FFFBEF;
    padding: 80px 48px;
    position: relative;
    overflow: hidden;
}

.OurApproachSection::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #FDE68A;
    opacity: 0.3;
    pointer-events: none;
}

/* Grid */
.OurApproachGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.OAmedia {
    position: relative;
}

.OAimgframe {
    border-radius: 24px 24px 72px 24px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #F5D86E;
}

.OAimgframe img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.OAbadge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #2A2350;
    color: #FDE68A;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.4;
    padding: 8px;
    gap: 2px;
}


.OAeyebrow {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #B07D20;
    font-weight: 500;
    margin-bottom: 12px;
}

.OAtitle {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 700;
    color: #1E1A3C;
    line-height: 1.15;
    margin-bottom: 28px;
}

.OAtitle em {
    font-style: italic;
    color: #B07D20;
}

.OAbody {
    font-size: 15px;
    line-height: 1.6;
    color: #4A4466;
    margin-bottom: 16px;
}

.OAbody strong {
    color: #1E1A3C;
    font-weight: 500;
}

.divider {
    width: 48px;
    height: 3px;
    background: #F5D86E;
    border-radius: 2px;
    margin: 24px 0;
}

/* Pillbox */
.OApills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.OApill {
    font-size: 12px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 999px;
    background: #FFF7D6;
    color: #7A5500;
    border: 1px solid #F5D86E;
    letter-spacing: 0.01em;
}

@media (max-width: 768px) {
    .OurApproachSection {
        padding: 56px 24px;
    }

    .OurApproachGrid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .OAtitle {
        font-size: 36px;
    }

    .OAbadge {
        width: 84px;
        height: 84px;
        font-size: 10px;
        bottom: -14px;
        right: -14px;
    }

    .OAimgframe {
        max-width: 360px;
        margin: 0 auto;
    }

    .OAmedia {
        height: auto;
    }
}

@media (max-width: 480px) {
    .OurApproachSection {
        padding: 40px 18px;
    }

    .OAtitle {
        font-size: 30px;
    }

    .OAeyebrow {
        font-size: 10px;
    }

    .OAbody {
        font-size: 14px;
    }

    .OAbadge {
        width: 72px;
        height: 72px;
        font-size: 9px;
        bottom: -10px;
        right: -10px;
        padding: 6px;
    }

    .OurApproachSection::before {
        width: 200px;
        height: 200px;
        top: -60px;
        right: -60px;
    }
}