.ifag-about-section {
    display: flex;
    gap: 80px;
    align-items: center;
    padding: 60px 0;
    font-family: 'Inter', sans-serif;
}

.ifag-about-left {
    flex: 1.3;
}

.ifag-about-right {
    flex: 1;
}

/* --- LEFT CONTENT --- */
.ifag-about-header {
    margin-bottom: 30px;
}

.ifag-about-subtitle {
    display: block;
    color: #CE2139;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ifag-about-divider {
    width: 45px;
    height: 4px;
    background-color: #CE2139;
    margin-top: 12px;
    border-radius: 2px;
}

.ifag-about-title {
    font-size: 46px;
    font-weight: 800;
    color: #111111;
    line-height: 1.15;
    margin: 0 0 30px 0;
}

.ifag-about-description {
    font-size: 15.5px;
    color: #444444;
    line-height: 1.7;
}

.ifag-about-description p {
    margin-bottom: 20px;
}

/* --- CTA BUTTON --- */
.ifag-about-cta {
    margin-top: 40px;
}

.ifag-about-btn {
    display: inline-block;
    background-color: #CE2139;
    color: #ffffff !important;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 25px rgba(206, 33, 57, 0.2);
}

.ifag-about-btn:hover {
    background-color: #b11c30;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(206, 33, 57, 0.3);
}

/* --- RIGHT CARD --- */
.ifag-about-card {
    position: relative;
    width: 100%;
    min-height: 400px;
    background-color: #0d0d0d;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 50px 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    --card-accent: #CE2139;
}

.ifag-about-card-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 100% 100%, var(--card-accent) 0%, transparent 60%),
                linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.ifag-about-card-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.ifag-about-card-badge {
    display: inline-block;
    background-color: #CE2139;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 7px 14px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.ifag-about-card-stat {
    font-size: 72px;
    font-weight: 800;
    color: #CE2139;
    line-height: 1;
    margin-bottom: 15px;
    letter-spacing: -2px;
}

.ifag-about-card-label {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.4;
    margin: 0;
    opacity: 0.85;
    max-width: 250px;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .ifag-about-section {
        gap: 40px;
    }
    .ifag-about-title {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .ifag-about-section {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 0;
    }
    .ifag-about-cta {
        width: 100%;
        text-align: center;
    }
    .ifag-about-right {
        width: 100%;
    }
    .ifag-about-card {
        min-height: 350px;
    }
}

@media (max-width: 600px) {
    .ifag-about-title {
        font-size: 30px;
    }
    .ifag-about-card-stat {
        font-size: 60px;
    }
}
