/* ===== Education Page ===== */

/* ===== Filters ===== */
.education-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.education-filters__select {
    min-width: 200px;
}

.education-select-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

.education-select-wrap i {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #5CBB73;
    font-size: 12px;
    pointer-events: none;
    z-index: 1;
}

.education-select {
    width: 100%;
    padding: 12px 36px 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    background: #fff;
    outline: none;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.education-select:focus {
    border-color: #5CBB73;
    box-shadow: 0 0 0 3px rgba(92,187,115,.15);
}

.education-filters__search {
    flex: 1;
    min-width: 200px;
}

.education-search-wrap {
    position: relative;
    width: 100%;
}

.education-search-wrap i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 14px;
    pointer-events: none;
}

.education-search {
    width: 100%;
    padding: 12px 16px 12px 38px;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.education-search:focus {
    border-color: #5CBB73;
    box-shadow: 0 0 0 3px rgba(92,187,115,.15);
}

.education-search::placeholder {
    color: #aaa;
}

/* ===== Type Tabs ===== */
.education-type-label {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.education-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.education-tab {
    height: 38px;
    padding: 0 24px;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.education-tab:hover {
    border-color: #5CBB73;
    color: #5CBB73;
}

.education-tab.is-active {
    background: #5CBB73;
    border-color: #5CBB73;
    color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

/* ===== Cards List ===== */
.education-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.education-card {
    display: block;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.04), 0 4px 0 #ccc;
    border: none;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}

.education-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,.08), 0 4px 0 #bbb;
}

.education-card__main {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 28px;
}

.education-card__logo {
    width: 165px;
    height: 130px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
    border: 1px solid #D9D9D9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.education-card__logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.education-card__logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #ccc;
    background: #f5f5f5;
}

.education-card__content {
    flex: 1;
    min-width: 0;
}

.education-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.education-card__name {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #222;
    line-height: 1.3;
}

.education-card__badge {
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

.education-card__address {
    font-size: 14px;
    color: #555;
    margin: 6px 0 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.education-card__address i {
    color: #5CBB73;
    font-size: 15px;
}

.education-card__map-link {
    color: #5CBB73;
    font-weight: 600;
    cursor: pointer;
    margin-left: 8px;
}

.education-card__map-link:hover {
    text-decoration: underline;
}

.education-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 32px;
}

.education-card__meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
}

.education-card__meta-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #F1F4F9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.education-card__meta-icon i {
    color: #000;
    font-size: 15px;
}

.education-card__meta-label {
    font-size: 12px;
    color: #999;
    font-weight: 400;
}

.education-card__promo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 18px 14px;
    padding: 0 20px;
    height: 54px;
    background: #F1F4F9;
    border: none;
    border-radius: 12px;
    flex-wrap: wrap;
    gap: 12px;
}

.education-card__promo-text {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.education-card__promo-text i {
    color: #FFB300;
    margin-right: 8px;
}

.education-card__promo-btn {
    height: 38px;
    padding: 0 18px;
    background: #5CBB73;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.education-card__promo-btn:hover {
    background: #4aaa5c;
    color: #fff;
    text-decoration: none;
}

.education-empty {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-size: 16px;
}

/* ===== Breadcrumb ===== */
.education-breadcrumb {
    padding: 20px 0 10px;
    font-size: 14px;
    color: #999;
}

.education-breadcrumb a {
    color: #5CBB73;
    text-decoration: none;
}

.education-breadcrumb a:hover {
    text-decoration: underline;
}

.education-breadcrumb span {
    margin: 0 6px;
}

/* ===== Detail Page ===== */
.education-detail {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,.04), 0 4px 0 #ccc;
    overflow: hidden;
    margin-bottom: 30px;
}

.education-detail__header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 28px;
}

.education-detail__title {
    flex: 1;
    min-width: 0;
}

.education-detail__meta {
    display: flex;
    gap: 16px;
    padding: 0 28px 12px;
}

.education-detail__meta .education-card__meta-item {
    flex: 1;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid #D9D9D9;
    border-radius: 12px;
    gap: 10px;
    height: 56px;
}

.education-detail__meta .education-card__meta-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.education-detail__meta .education-card__meta-icon i {
    font-size: 13px;
}

.education-detail__meta .education-card__meta-label {
    font-size: 11px;
}

.education-detail__meta .education-card__meta-item > div:last-child {
    font-size: 13px;
}

.education-detail__section {
    margin-bottom: 24px;
}

.education-detail__section h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px;
}

/* Description */
.education-detail__desc {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

.education-detail__desc p {
    margin-bottom: 12px;
}

/* Gallery Mixed Layout */
.education-gallery__mixed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    height: 400px;
}

.education-gallery__mixed.no-video {
    display: block;
    height: auto;
}

.education-gallery__mixed.no-video .education-gallery__grid {
    grid-template-columns: repeat(4, 1fr);
}

.education-gallery__video {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    grid-row: 1 / -1;
    display: grid;
    place-items: center;
}

.education-gallery__video > img,
.education-gallery__video > .education-gallery__play {
    grid-area: 1 / 1;
}

.education-gallery__video > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.education-gallery__play {
    z-index: 2;
}

.education-gallery__play svg {
    opacity: .85;
    transition: opacity .2s, transform .2s;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.3));
}

.education-gallery__video:hover .education-gallery__play svg {
    opacity: 1;
    transform: scale(1.1);
}

/* YouTube Modal */
.education-yt-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.education-yt-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.85);
}

.education-yt-modal__close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
    z-index: 2;
}

.education-yt-modal__player {
    position: relative;
    z-index: 1;
    width: 80vw;
    max-width: 900px;
    aspect-ratio: 16/9;
}

.education-yt-modal__player iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Lightbox counter */
.education-lightbox__counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    background: rgba(0,0,0,.5);
    padding: 4px 16px;
    border-radius: 20px;
    z-index: 2;
}

/* Map */
.education-map {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    background: #e8e8e8;
}

/* ===== Gallery ===== */
.education-gallery {
    margin: 30px 0;
}

.education-gallery h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px;
    color: #333;
}

.education-gallery__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.education-gallery__item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: opacity .2s;
    aspect-ratio: 4/3;
}

.education-gallery__badge {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(0,0,0,.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
}

.education-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.education-gallery__item:hover {
    opacity: .85;
}

.education-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== Similar ===== */
.education-similar {
    margin-bottom: 40px;
}

.education-similar h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px;
    color: #333;
}

/* ===== Promo Modal ===== */
.education-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.education-modal.is-open {
    display: flex;
}

.education-modal__overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,.5);
}

.education-modal__content {
    position: relative;
    background: #fff;
    border-radius: 24px;
    width: 545px;
    max-width: 94vw;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
}

.education-modal__close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    z-index: 2;
    transition: color .2s;
}

.education-modal__close:hover {
    color: #333;
}

.education-modal__logo {
    display: flex;
    justify-content: center;
    padding: 24px 0 16px;
}

.education-modal__logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.education-modal__title {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    text-align: center;
    margin: 0 0 8px;
    padding: 0 32px;
}

.education-modal__desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    text-align: center;
    padding: 0 32px 16px;
}

.education-modal__code-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 24px 20px;
    padding: 14px 20px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
}

.education-modal__code-label {
    font-size: 14px;
    color: #999;
}

.education-modal__code-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.education-modal__code {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    letter-spacing: 1px;
}

.education-modal__copy-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    transition: color .2s;
}

.education-modal__copy-btn:hover {
    color: #5CBB73;
}

.education-modal__steps {
    padding: 0 24px 24px;
}

.education-modal__steps h4 {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin: 0 0 14px;
}

.education-modal__step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

.education-modal__step:last-child {
    border-bottom: none;
}

.education-modal__step-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #F1F4F9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #333;
}

/* ===== Lightbox ===== */
.education-lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.education-lightbox.is-open {
    display: flex;
}

.education-lightbox__overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,.85);
}

.education-lightbox__close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
    z-index: 2;
}

.education-lightbox__prev,
.education-lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    font-size: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transition: background .2s;
}

.education-lightbox__prev:hover,
.education-lightbox__next:hover {
    background: rgba(255,255,255,.3);
}

.education-lightbox__prev { left: 140px; }
.education-lightbox__next { right: 30px; }

.education-lightbox__img {
    position: relative;
    z-index: 1;
    max-width: 90%;
    max-height: 90vh;
}

.education-lightbox__img img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
}

/* ===== Homepage Slider ===== */
.education-slider-section {
    padding: 48px 0 0;
}

.education-slider-section h2 {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    margin-bottom: 24px;
}

.education-slider {
    margin: 0 -10px;
    padding-bottom: 6px;
}

.education-slider .slick-list {
    overflow: hidden;
    padding-bottom: 4px;
}

.education-slide {
    padding: 0 10px;
    height: inherit;
}

.education-slider .slick-track {
    display: flex;
}

.education-slider .slick-slide {
    height: auto;
}

.education-slider .slick-slide > div {
    height: 100%;
}

.education-slider-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.06), 0 3px 0 #ccc;
    transition: transform .25s, box-shadow .25s;
    text-decoration: none;
    color: inherit;
    outline: 0;
    height: 100%;
}

.education-slider-card:focus { outline: 0; }

.education-slider-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,.12);
    text-decoration: none;
    color: inherit;
}

/* Card image area — large centered logo, fixed height */
.education-slider-card__img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
    height: 200px;
    background: #f9f9f9;
    flex-shrink: 0;
}

.education-slider-card__img img {
    width: auto;
    height: auto;
    max-width: 140px;
    max-height: 140px;
    object-fit: contain;
    border-radius: 50%;
}

/* Badge overlay — top left */
.education-slider-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

/* Card body */
.education-slider-card__body {
    padding: 14px 16px 18px;
    flex: 1;
    overflow: hidden;
}

.education-slider-card__name {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #222;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.education-slider-card__info {
    font-size: 13px;
    color: #888;
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.education-slider-card__info i {
    color: #5CBB73;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

/* Slick arrows — same style as useful-links-slider */
.education-slider .slick-prev,
.education-slider .slick-next {
    width: 44px;
    height: 44px;
    background: #dceee8;
    border: 0;
    border-radius: 50%;
    z-index: 2;
    transition: background .2s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.education-slider .slick-prev { left: -22px; }
.education-slider .slick-next { right: -22px; }

.education-slider .slick-prev:before,
.education-slider .slick-next:before {
    content: "" !important;
    font-size: 0 !important;
    display: none !important;
}

.education-slider .slick-prev:after,
.education-slider .slick-next:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 9px;
    border-top: 2px solid #2d2d2d;
    border-right: 2px solid #2d2d2d;
}

.education-slider .slick-prev:after {
    transform: translate(-35%, -50%) rotate(-135deg);
}

.education-slider .slick-next:after {
    transform: translate(-65%, -50%) rotate(45deg);
}

.education-slider .slick-prev:hover,
.education-slider .slick-next:hover {
    background: #3aaa5c;
}

.education-slider .slick-prev:hover:after,
.education-slider .slick-next:hover:after {
    border-color: #fff;
}

/* ===== Responsive ===== */
@media screen and (max-width: 991px) {
    .education-gallery__mixed {
        grid-template-columns: 1fr;
    }
    .education-gallery__video {
        grid-row: auto;
    }
    .education-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .education-page-title {
        font-size: 22px;
        margin: 20px 0 15px;
    }
    .education-filters__select {
        max-width: 100%;
    }
    .education-card__main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
    .education-card__header {
        justify-content: center;
    }
    .education-card__address {
        justify-content: center;
    }
    .education-card__meta {
        justify-content: center;
    }
    .education-card__promo {
        flex-direction: column;
        text-align: center;
    }
    .education-detail__header {
        flex-direction: column;
        text-align: center;
    }
    .education-detail__title h1 {
        font-size: 20px;
    }
    .education-detail__promo {
        flex-direction: column;
        text-align: center;
    }
    .education-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .education-tabs {
        gap: 6px;
    }
    .education-tab {
        padding: 6px 14px;
        font-size: 13px;
    }
}

/* ===== DARK MODE ===== */
body.dark-mode .education-type-label {
    color: #e0e0e0;
}

body.dark-mode .education-select {
    background: #2a2a2a;
    border-color: #444;
    color: #e0e0e0;
}

body.dark-mode .education-select-wrap i {
    color: #81C784;
}

body.dark-mode .education-search {
    background: #2a2a2a;
    border-color: #444;
    color: #e0e0e0;
}

body.dark-mode .education-tab {
    background: #2a2a2a;
    border-color: #444;
    color: #ccc;
}

body.dark-mode .education-tab:hover {
    border-color: #5CBB73;
    color: #5CBB73;
}

body.dark-mode .education-tab.is-active {
    background: #5CBB73;
    border-color: #5CBB73;
    color: #fff;
}

body.dark-mode .education-card {
    background: #1e1e1e;
    box-shadow: 0 2px 8px rgba(0,0,0,.3), 0 4px 0 #333;
}

body.dark-mode .education-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,.4), 0 4px 0 #444;
}

body.dark-mode .education-card__logo {
    background: #333;
    border-color: #444;
}

body.dark-mode .education-card__name {
    color: #e0e0e0;
}

body.dark-mode .education-card__address {
    color: #aaa;
}

body.dark-mode .education-card__meta-item {
    color: #aaa;
}

body.dark-mode .education-card__meta-item strong {
    color: #999;
}

body.dark-mode .education-card__promo {
    background: #2a2d33;
}

body.dark-mode .education-card__promo-text {
    color: #ddd;
}

body.dark-mode .education-empty {
    color: #888;
}

body.dark-mode .education-breadcrumb {
    color: #888;
}

body.dark-mode .education-detail {
    background: #1e1e1e;
    box-shadow: 0 2px 16px rgba(0,0,0,.3);
}

body.dark-mode .education-detail__header {
    border-color: #333;
}

body.dark-mode .education-detail__logo {
    background: #333;
}

body.dark-mode .education-detail__title h1 {
    color: #e0e0e0;
}

body.dark-mode .education-detail__info p {
    color: #ccc;
}

body.dark-mode .education-detail__promo {
    background: linear-gradient(135deg, #1a3a1e, #2a4a2f);
}

body.dark-mode .education-detail__discount {
    color: #81C784;
}

body.dark-mode .education-detail__desc {
    color: #ccc;
}

body.dark-mode .education-gallery h3,
body.dark-mode .education-similar h2 {
    color: #e0e0e0;
}

body.dark-mode .education-map {
    background: #333;
}

body.dark-mode .education-modal__content {
    background: #2a2a2a;
}

body.dark-mode .education-modal__content h3 {
    color: #e0e0e0;
}

body.dark-mode .education-modal__code {
    background: #3a2a10;
    border-color: #5CBB73;
    color: #81C784;
}

body.dark-mode .education-modal__desc {
    color: #aaa;
}

body.dark-mode .education-slider-section h2 {
    color: #e0e0e0;
}

body.dark-mode .education-slider-card {
    background: #1e1e1e;
    box-shadow: 0 2px 12px rgba(0,0,0,.3), 0 3px 0 #333;
}

body.dark-mode .education-slider-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
}

body.dark-mode .education-slider-card__img {
    background: #2a2a2a;
}

body.dark-mode .education-slider-card__name {
    color: #e0e0e0;
}

body.dark-mode .education-slider-card__info {
    color: #aaa;
}

body.dark-mode .education-slider .slick-prev,
body.dark-mode .education-slider .slick-next {
    background: #2a3a30;
}

body.dark-mode .education-slider .slick-prev:after,
body.dark-mode .education-slider .slick-next:after {
    border-color: #ccc;
}

body.dark-mode .education-slider .slick-prev:hover,
body.dark-mode .education-slider .slick-next:hover {
    background: #3aaa5c;
}
