.header-row h2 .icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    object-fit: contain;
    display: inline-block;
}

    /* =====================================================
   GLOBAL FIXES
===================================================== */
.cs-right h3 {
    opacity: 0 !important;
}

/* =====================================================
   CASE STUDY CONTAINER
===================================================== */
.case-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    font-family: Inter, Arial, sans-serif;
    color: #505050;
}

/* Header */
.case-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.case-title {
    font-size: 42px;
    font-weight: 700;
    color: #2a2c5b;
}

.case-logo img {
    max-width: 160px;
}

/* Quote */
.case-quote {
    font-size: 18px;
    /* line-height: 1.8; */
    color: #6b7280;
    /* margin: 20px 0 40px; */
}

/* Author */
.case-author {
    text-align: right;
    margin-bottom: 50px;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: #2a2c5b;
}

.author-role {
    font-size: 16px;
    color: #6b7280;
}

/* Section Titles & Text */
.case-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #2a2c5b;
    margin-bottom: 15px;
}

.case-text {
    font-size: 18px;
    /* line-height: 1.9; */
    color: #6b7280;
    /* max-width: 95%; */
}

/* =====================================================
   COMMON SECTION SPACING
===================================================== */
.case-hero,
.challenge-solution,
.resources_section,
.benefits-section,
.about-academia,
.awards_recognitions_section {
    padding: 60px 20px;
}

/* =====================================================
   CHALLENGE & SOLUTION
===================================================== */
.challenge-solution {
    background: #e7f2ff;
    font-family: Inter, sans-serif;
}

.cs-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    padding: 25px 0;
    border-bottom: 1px solid #d0d8df;
    position: relative;
}

.cs-row::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    background: #c5cdd6;
}

/* Header Row */
.header-row {
    border-bottom: 1px solid #c5cdd6;
    padding-bottom: 30px;
}

.header-row h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 32px;
    font-weight: 500;
    padding-left: 5px;
}

/* Content */
.cs-left h3,
.cs-right h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    padding-left: 10px;
}

.cs-left p,
.cs-right p {
    font-size: 20px;
    margin: 0;
    padding-left: 10px;
}

/* Accordion */
.arrow {
    float: right;
    width: 22px;
    height: 22px;
    margin-top: 10px;
    cursor: pointer;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("https://cdn-icons-png.flaticon.com/512/2985/2985150.png");
}

.accordion p {
    display: none;
}

.accordion.open p {
    display: block;
}

.accordion.open .arrow {
    transform: rotate(180deg);
}

/* =====================================================
   BENEFITS SECTION
===================================================== */
.benefits-section {
    background: #eaf4ff;
    font-family: Inter, sans-serif;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-title {
    font-size: 42px;
    font-weight: 500;
    color: #2a2c5b;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    gap: 14px;
    font-size: 18px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 22px;
    font-weight: 400;
}

.benefits-list li::before {
    content: "➜";
    color: #2a2c5b;
}

/* =====================================================
   ABOUT ACADEMIA
===================================================== */
.about-academia {
    background: #fff;
    font-family: Inter, sans-serif;
}

.about-container {
    max-width: 1200px;
    margin: auto;
}

.about-title {
    font-size: 48px;
    font-weight: 700;
    color: #2a2c5b;
    margin-bottom: 24px;
}

.about-text {
    /* max-width: 1050px; */
    font-size: 20px;
    /* line-height: 1.7; */
    color: #6b7280;
}

/* =====================================================
   RESPONSIVE
===================================================== */

/* Tablet */
@media (max-width: 991px) {
    .benefits-title,
    .about-title {
        font-size: 40px;
    }

    .benefits-grid {
        gap: 40px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .case-header {
        flex-direction: column;
        text-align: center;
    }

    .case-title {
        font-size: 32px;
    }

    .case-author {
        text-align: right;
    }

    .case-hero,
    .challenge-solution,
    .resources_section,
    .benefits-section,
    .about-academia,
    .awards_recognitions_section {
        padding: 30px 15px;
    }

    .challenge-solution {
        padding: 0 15px;
    }

    .header-row h2 {
        font-size: 16px;
    }

    .cs-left h3,
    .cs-right h3 {
        font-size: 15px;
        padding-left: 10px;
    }

    .cs-left p,
    .cs-right p {
        font-size: 14px;
    }

    .benefits-title,
    .about-title {
        font-size: 32px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .benefits-list li {
        font-size: 16px;
    }

    .about-text {
        font-size: 16px;
    }
}
