* {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: "Google Sans", "Segoe UI", Arial, sans-serif;
            background: #f5f5f5;
        }

        .education-support {
            position: relative;
            overflow: hidden;
            padding: 55px 0;
            background:
                radial-gradient(circle at 8% 18%, rgba(255,255,255,.95) 0 8px, transparent 9px),
                radial-gradient(circle at 91% 76%, rgba(255,255,255,.75) 0 12px, transparent 13px),
                linear-gradient(135deg, #e0e2e4 0%, #f9f9f9 45%, #c9ced1 100%);
        }

        .education-support::before,
        .education-support::after {
            content: "";
            position: absolute;
            left: -8%;
            width: 116%;
            height: 170px;
            border-radius: 45% 55% 50% 50%;
            pointer-events: none;
        }

        .education-support::before {
            top: -100px;
            background: rgba(126, 136, 143, .27);
            transform: rotate(-2deg);
        }

        .education-support::after {
            bottom: -110px;
            background: rgba(255,255,255,.8);
            transform: rotate(3deg);
        }

        .silver-wave {
            position: absolute;
            width: 600px;
            height: 180px;
            border: 3px solid rgba(103, 116, 124, .20);
            border-left: 0;
            border-right: 0;
            border-radius: 50%;
            transform: rotate(-14deg);
            z-index: 0;
        }

        .wave-one {
            top: 90px;
            right: -180px;
        }

        .wave-two {
            bottom: 60px;
            left: -220px;
            transform: rotate(15deg);
        }

        .education-support .container {
            position: relative;
            z-index: 2;
        }

        .section-heading {
            max-width: 720px;
            margin: 0 auto 30px;
            text-align: center;
        }

        .section-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 7px 14px;
            border-radius: 30px;
            background: #ffffff;
            color: #59636a;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 8px 25px rgba(45, 53, 58, .10);
            margin-bottom: 10px;
        }

        .section-heading h2 {
            margin: 0 0 7px;
            font-size: clamp(30px, 4vw, 47px);
            line-height: 1;
            font-weight: 800;
            color: #30383d;
        }

        .section-heading h2 span {
            color: #e47b2a;
        }

        .section-heading p {
            margin: 0;
            color: #68747b;
            font-size: 15px;
            line-height: 1.7;
        }

        .education-shell {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 22px 65px rgba(48, 56, 61, .18);
            background: #fff;
        }

        .education-shell > .row {
            min-height: 445px;
        }

        .gallery-side,
        .content-side {
            height: 100%;
        }

        .gallery-side {
            position: relative;
            padding: 17px;
            background: #f7f8f9;
            overflow: hidden;
        }

        .gallery-side::before {
            content: "";
            position: absolute;
            width: 220px;
            height: 220px;
            top: -95px;
            left: -70px;
            border: 28px solid rgba(255,255,255,.08);
            border-radius: 50%;
        }

        .gallery-side::after {
            content: "";
            position: absolute;
            width: 170px;
            height: 170px;
            bottom: -85px;
            right: -60px;
            background: rgba(230, 125, 42, .20);
            border-radius: 50%;
        }

        .gallery-wrap {
            height: 100%;
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .main-photo {
            position: relative;
            flex: 1;
            min-height: 300px;
            overflow: hidden;
            border-radius: 7px;
            border: 5px solid rgba(255,255,255,.95);
            box-shadow: 0 15px 35px rgba(0,0,0,.18);
            cursor: pointer;
        }

        .main-photo img,
        .small-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .6s ease;
        }

        .main-photo:hover img,
        .small-photo:hover img {
            transform: scale(1.08);
        }

        .photo-badge {
            position: absolute;
            left: 14px;
            bottom: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 13px;
            background: rgba(255,255,255,.94);
            color: #384147;
            border-radius: 5px;
            font-size: 13px;
            font-weight: 700;
            box-shadow: 0 8px 20px rgba(0,0,0,.16);
        }

        .photo-badge i {
            color: #e47b2a;
        }

        .photo-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            height: 92px;
        }

        .small-photo {
            position: relative;
            overflow: hidden;
            border-radius: 5px;
            border: 3px solid rgba(255,255,255,.9);
            cursor: pointer;
        }

        .small-photo::after {
            content: "\f00e";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            inset: 0;
            display: grid;
            place-items: center;
            color: #fff;
            font-size: 19px;
            background: rgba(44, 51, 55, .45);
            opacity: 0;
            transition: .3s;
        }

        .small-photo:hover::after {
            opacity: 1;
        }

        .content-side {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 34px 38px;
            background: #fffdfa;
            overflow: hidden;
        }

        .content-side::after {
            content: "";
            position: absolute;
            width: 240px;
            height: 240px;
            border: 45px solid rgba(197, 202, 205, .18);
            border-radius: 50%;
            right: -110px;
            top: -110px;
        }

        .content-inner {
            position: relative;
            z-index: 2;
        }

        .mini-title {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #e47b2a;
            text-transform: uppercase;
            letter-spacing: 1.4px;
            font-size: 12px;
            font-weight: 800;
            margin-bottom: 7px;
        }

        .mini-title::before {
            content: "";
            width: 34px;
            height: 3px;
            background: #e47b2a;
            border-radius: 20px;
        }

        .content-side h3 {
            margin: 0 0 13px;
            color: #313a3f;
            font-size: clamp(27px, 3vw, 39px);
            line-height: 1.08;
            font-weight: 800;
        }

        .main-content {
            max-width: 760px;
            color: #667278;
            line-height: 1.72;
            font-size: 15px;
            margin-bottom: 20px;
        }

        .support-items {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 19px;
        }

        .support-item {
            min-height: 93px;
            padding: 13px;
            border-radius: 7px;
            position: relative;
            overflow: hidden;
        }

        .support-item:nth-child(1) {
            background: #fff0e4;
        }

        .support-item:nth-child(2) {
            background: #edf5ec;
        }

        .support-item:nth-child(3) {
            background: #eff0f1;
        }

        .support-icon {
            width: 33px;
            height: 33px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            margin-bottom: 7px;
            background: #fff;
            color: #e47b2a;
            font-size: 14px;
            box-shadow: 0 5px 14px rgba(0,0,0,.08);
        }

        .support-item h5 {
            margin: 0 0 3px;
            font-size: 14px;
            font-weight: 800;
            color: #3e474c;
        }

        .support-item p {
            margin: 0;
            font-size: 12px;
            line-height: 1.45;
            color: #737c81;
        }

        .slogan-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding-top: 17px;
            border-top: 1px solid #e1e3e4;
        }

        .slogan {
            display: flex;
            align-items: center;
            gap: 11px;
            color: #535e63;
            font-size: 14px;
            font-weight: 700;
            line-height: 1.4;
        }

        .slogan i {
            flex: 0 0 auto;
            width: 39px;
            height: 39px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            color: #fff;
            background: #747f85;
        }

        .read-more-btn {
            flex: 0 0 auto;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            padding: 11px 19px;
            border: 0;
            border-radius: 5px;
            background: #e47b2a;
            color: #fff;
            text-decoration: none;
            font-size: 13px;
            font-weight: 700;
            transition: .3s;
            box-shadow: 0 9px 22px rgba(228, 123, 42, .25);
        }

        .read-more-btn:hover {
            background: #566168;
            color: #fff;
            transform: translateY(-2px);
        }

        .edu-lightbox {
            position: fixed;
            inset: 0;
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 25px;
            background: rgba(25,29,31,.92);
            opacity: 0;
            visibility: hidden;
            transition: .3s;
        }

        .edu-lightbox.active {
            opacity: 1;
            visibility: visible;
        }

        .edu-lightbox img {
            max-width: 92vw;
            max-height: 86vh;
            object-fit: contain;
            border: 6px solid #fff;
            border-radius: 7px;
            box-shadow: 0 20px 70px rgba(0,0,0,.45);
        }

        .lightbox-close {
            position: absolute;
            top: 18px;
            right: 22px;
            width: 44px;
            height: 44px;
            border: 0;
            border-radius: 50%;
            background: #fff;
            color: #3b4347;
            font-size: 20px;
            cursor: pointer;
        }

        @media (max-width: 991.98px) {
            .education-support {
                padding: 45px 0;
            }

            .education-shell > .row {
                min-height: auto;
            }

            .gallery-side,
            .content-side {
                height: auto;
            }

            .gallery-side {
                min-height: 480px;
            }

            .content-side {
                padding: 30px;
            }
        }

        @media (max-width: 767.98px) {
            .education-support {
                padding: 38px 0;
            }

            .section-heading {
                margin-bottom: 23px;
            }

            .gallery-side {
                min-height: auto;
                padding: 12px;
            }

            .main-photo {
                height: 285px;
                min-height: 285px;
            }

            .photo-grid {
                height: 85px;
            }

            .content-side {
                padding: 25px 18px;
            }

            .support-items {
                grid-template-columns: 1fr;
            }

            .support-item {
                min-height: auto;
            }

            .slogan-row {
                align-items: flex-start;
                flex-direction: column;
            }

            .read-more-btn {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .education-support {
                padding: 32px 0;
            }

            .main-photo {
                height: 245px;
                min-height: 245px;
            }

            .photo-grid {
                height: 72px;
                gap: 5px;
            }

            .photo-badge {
                left: 9px;
                bottom: 9px;
                font-size: 11px;
            }

            .content-side h3 {
                font-size: 27px;
            }
        }