@import url("https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap");

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; vertical-align: top; }
* { font-family: "Albert Sans", sans-serif; list-style: none; }
ul { padding: 0; margin: 0; }
a { text-decoration: none; }
p { margin: 0; padding: 0; }
h1, h2, h3 { margin: 0; padding: 0; }
html, body { width: 100%; padding: 0; margin: 0; overflow-x: hidden; }

/* ── VARIABLES ────────────────────────────────────────────── */
:root {
    --blue:      #17347C;
    --blue-mid:  #2A5EE2;
    --blue-light:rgba(42, 94, 226, 0.12);
    --text:      #1a1a2e;
    --text-muted:#666;
    --white:     #ffffff;
    --radius:    20px;
    --radius-sm: 10px;
}

/* ── SHARED UTILS ─────────────────────────────────────────── */
.section_head {
    text-align: center;
    margin-bottom: 50px;
}
.section_head h2 {
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: lighter;
    color: var(--blue);
    margin-bottom: 12px;
}
.section_head .section_sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
}
.section_foot {
    text-align: center;
    margin-top: 50px;
}
.link_more {
    color: var(--blue-mid);
    font-weight: 600;
    font-size: 0.95rem;
    transition: opacity .2s;
}
.link_more:hover { opacity: .7; }

/* Buttons */
.btn-prim {
    display: inline-block;
    padding: 16px 36px;
    background: var(--white);
    color: var(--blue);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    transition: .2s;
}
.btn-prim:hover { background: #eef2ff; }
.btn-sec {
    display: inline-block;
    padding: 16px 36px;
    background: rgba(255,255,255,.18);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,.5);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: .2s;
}
.btn-sec:hover { background: rgba(255,255,255,.28); }
.btn-outline {
    display: inline-block;
    padding: 14px 36px;
    border: 2px solid var(--blue);
    color: var(--blue);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    transition: .2s;
}
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-outline-white {
    display: inline-block;
    padding: 14px 36px;
    border: 2px solid rgba(255,255,255,.6);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    transition: .2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); }

/* ── HEADER LOGO ─────────────────────────────────────────── */
.logo-link {
    position: fixed;
    top: 20px;
    right: 39px;
    z-index: 100;
    width: 240px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}
.logo-link:hover {
    opacity: 0.8;
    transform: scale(1.05);
}
.header-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ── MENU BUTTON ─────────────────────────────────────────── */
button.openmenu {
    border-radius: var(--radius-sm);
    position: fixed;
    z-index: 101;
    right: 70px;
    top: 100px;
    max-width: 110px;
    border: none;
    background: rgba(23, 52, 124, 0.7);
    color: white;
    cursor: pointer;
}
button.openmenu > div {
    padding: 10px 14px;
    display: flex;
    gap: 12px;
    align-items: center;
}
button.openmenu > div .menu_icon {
    width: 22px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
button.openmenu > div .menu_icon > div {
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

/* ── MAIN NAV ─────────────────────────────────────────────── */
nav.mainnav {
    max-height: calc(100vh - 200px);
    overflow: auto;
    backdrop-filter: blur(14px);
    opacity: 0;
    transition: .3s;
    pointer-events: none;
    transform: translateY(-16px);
    background: rgba(17, 38, 94, 0.85);
    position: fixed;
    right: 65px;
    top: 95px;
    padding: 20px 30px;
    padding-top: 60px;
    z-index: 100;
    width: 300px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,.12);
}
nav.mainnav.shownav {
    pointer-events: all;
    transform: translateY(0);
    opacity: 1;
}
nav.mainnav > * { text-align: right; }
nav.mainnav .header {
    margin: 16px 0;
    padding-bottom: 6px;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,.2);
}
nav.mainnav a { color: white; display: block; transition: .2s; }
nav.mainnav .active .header { border-bottom-color: #fff; }
nav.mainnav .list_items {
    height: 0;
    overflow: hidden;
    margin-top: -8px;
    transition: height 0.6s ease;
}
nav.mainnav .list_items a {
    font-size: 1rem;
    opacity: .6;
}
nav.mainnav .list_items a:hover { opacity: 1; }
nav.mainnav .list_items ul li { margin: 7px 0; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr;
    gap: 28px;
    margin-left: -80px;
    width: calc(100vw + 120px);
}
.hero > div,
.hero > a {
    transform: skewX(-10deg) translateZ(0);
    border-bottom-right-radius: var(--radius);
    overflow: hidden;
    position: relative;
    will-change: transform;
}
.hero .block_cover {
    position: absolute;
    inset: 0;
    z-index: 1;
/*    background: linear-gradient(170deg, rgba(17,38,94,.9) 0%, rgba(23,52,124,.45) 100%);*/
    background: #00000030;
}

/* Block 1 */
.hero .block1 {
    height: 92vh;
    max-height: 920px;
    overflow: hidden;
    clip-path: inset(0 0 0 0 round 0 0 20px 0);
}
.hero .block1 video {
    transform: skewX(10deg);
    position: absolute;
    top: 0;
    left: -15%;
    width: 130%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero .block1 .block1_content {
    transform: skewX(10deg);
    width: calc(100% - 280px);
    height: 100%;
    margin: 0 200px;
    padding: 110px 0;
    z-index: 2;
    position: relative;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
}
.hero .block1 .block1_content .logo img { width: 420px; }
.hero .block1 .block1_content .logo video { width: 420px; height: auto; position: static !important; transform: none !important}
.hero .block1 .block1_content .words h1 {
    font-size: clamp(1.8rem, 3vw, 5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}
.hero .block1 .block1_content .words .subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: .78;
}
.hero .block1 .block1_content .buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Block 2 */
.hero .block2 {
    height: calc(92vh - 80px);
    max-height: 850px;
    display: block;
    text-decoration: none;
}
.hero .block2 .block_cover {
    background: linear-gradient(180deg, rgba(17,38,94,.88) 0%, rgba(42,94,226,.25) 100%);
}
.hero .block2 .block2_content {
    color: white;
    transform: skewX(10deg) translateX(8px);
    position: absolute;
    z-index: 10;
    padding: 90px 60px;
    top: 0;
}
.hero .block2 .cambridge_logo {
    width: 100%;
    max-width: 200px;
    margin-bottom: 24px;
}
.hero .block2 .cambridge_title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.hero .block2 .cambridge_text {
    font-size: .95rem;
    line-height: 1.55;
    opacity: .8;
}
.hero .block2 .block2_imagecover {
    transform: skewX(10deg);
    height: 100%;
    position: relative;
}
.hero .block2 .block2_imagecover img {
    position: absolute;
    inset: 0;
    height: 100%;
    margin-left: -80px;
    object-fit: cover;
}

/* Block 3 */
.hero .block3 {
    height: calc(92vh - 160px);
    max-height: 750px;
}
.hero .block3 .block3_content {
    position: absolute;
    inset: 0;
    z-index: 10;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 70px 50px 80px 60px;
    transform: skewX(10deg) translateX(8px);
}
.hero .block3 .fast_nav_label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: .5;
    margin-bottom: 16px;
}
.hero .block3 .fast_nav ul li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.hero .block3 .fast_nav ul li:last-child { border: none; }
.hero .block3 .fast_nav ul li a {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: .2s;
}
.hero .block3 .fast_nav ul li a:hover { opacity: .7; }
.hero .block3 .block3_imagecover {
    transform: skewX(10deg);
    height: 100%;
    position: relative;
}
.hero .block3 .block3_imagecover img {
    position: absolute;
    inset: 0;
    height: 100%;
    width: calc(100% + 80px);
    margin-left: -80px;
    object-fit: cover;
}

/* ── HERO FOOTER ─────────────────────────────────────────── */
.herofooter {
    display: flex;
    gap: 40px;
    align-items: center;
    position: fixed;
    right: 16px;
    bottom: 20px;
    z-index: 50;
    font-size: .88rem;
}
.herofooter .socials { display: flex; align-items: center; gap: 18px; }
.herofooter .socials a { display: flex; align-items: center; justify-content: center; }
.herofooter .footer_copy {
    display: flex;
    gap: 20px;
    padding: 14px 28px;
    background: #fff;
    border-radius: 12px;
    color: #333;
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.herofooter .footer_copy a { color: var(--blue); font-weight: 600; }

/* ── APPROACH ────────────────────────────────────────────── */
.approach {
    padding: 100px 80px;
    background: #f7f9ff;
}
.approach_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1300px;
    margin: 0 auto;
}
.approach_card {
    background: #fff;
    border-radius: var(--radius);
    padding: 36px 28px;
    border: 1px solid rgba(23,52,124,.08);
    transition: .25s;
    cursor: default;
}
.approach_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(23,52,124,.1);
}
.approach_icon {
    width: 52px;
    height: 52px;
    color: var(--blue-mid);
    margin-bottom: 20px;
}
.approach_icon svg { width: 100%; height: 100%; }
.approach_card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 12px;
}
.approach_card p {
    font-size: .95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ── JUBILEE ──────────────────────────────────────────────── */
.jubilee {
    background: var(--blue);
    color: #fff;
    overflow: hidden;
    position: relative;
}
.jubilee_inner {
    padding: 100px 80px;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.jubilee_label {
    display: block;
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    opacity: .55;
    margin-bottom: 20px;
}
.jubilee_title {
    font-size: clamp(1.6rem, 2.8vw, 2.8rem);
    font-weight: lighter;
    line-height: 1.25;
    margin-bottom: 28px;
}
.jubilee_text p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: .78;
    margin-bottom: 14px;
}
.jubilee_stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,.2);
}
.jstat { display: flex; flex-direction: column; gap: 4px; }
.jstat_num {
    font-size: 2.4rem;
    font-weight: lighter;
    line-height: 1;
    color: #fff;
}
.jstat_label {
    font-size: .88rem;
    opacity: .6;
}
.jubilee_visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.jubilee_num svg {
    width: 240px;
}

.jubilee_num .st0 {
    fill: white;
    fill-opacity: 0;
}

.jubilee_num .st0:nth-child(1) {
    animation: num_fill 5s ease-in-out infinite;
}

.jubilee_num .st0:nth-child(2) {
    animation: num_fill 5s ease-in-out infinite;
    animation-delay: 0.9s;
}

@keyframes num_fill {
    0%   { fill-opacity: 0; }
    30%  { fill-opacity: 1; }
    65%  { fill-opacity: 1; }
    90%  { fill-opacity: 0; }
    100% { fill-opacity: 0; }
}
.jubilee_num {
    font-size: clamp(10rem, 18vw, 22rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,.18);
    line-height: 1;
    user-select: none;
}

.jubilee_video {
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-top: 80px;
}
.jubilee_video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── CAMPUS ───────────────────────────────────────────────── */
.campus {
    padding: 100px 80px;
    background: #fff;
}
.campus_grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}
.campus_card {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    min-height: 340px;
    background: var(--blue);
    transition: .25s;
    text-decoration: none;
}
.campus_card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(23,52,124,.18); }
.campus_card.card1 { grid-column: 1 / 3; background: #17347C url('/_assets/images/block/1.jpg') center/cover no-repeat; }
.campus_card.card2 { background: #17347C url('/_assets/images/block/2.jpg') center/cover no-repeat; }
.campus_card.card3 { background: #1a3a70 url('/_assets/images/block/3.jpg') center/cover no-repeat; }
.campus_card.card4 { background: #162d60 url('/_assets/images/block/4.jpg') center/cover no-repeat; }
.campus_card.card5 { grid-column: 2 / 4; background: #1e3575 url('/_assets/images/block/1.jpg') center/cover no-repeat; }
.campus_card.card6 { grid-column: 3; grid-row: 2; background: #1e3575; }
.campus_card.card7 { grid-column: 1; grid-row: 3; background: #1a3a70; }
.campus_card_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(17,38,94,.4) 0%, rgba(23,52,124,.2) 100%);
    transition: .25s;
}
.campus_card:hover .campus_card_overlay { background: linear-gradient(160deg, rgba(17,38,94,.5) 0%, rgba(23,52,124,.3) 100%); }
.campus_card_content {
    position: relative;
    z-index: 2;
    padding: 36px 36px;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.campus_card_content h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.campus_card_content p { font-size: .95rem; line-height: 1.5; opacity: .8; margin-bottom: 16px; }
.campus_card_content .link_more { color: rgba(255,255,255,.7); font-size: .9rem; }

/* ── STORIES ──────────────────────────────────────────────── */
.stories {
    padding: 100px 80px;
    background: #f7f9ff;
}
.stories_grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.story_card {
    background: #fff;
    border-radius: var(--radius);
    padding: 0;
    border: 1px solid rgba(23,52,124,.08);
    transition: .25s;
    overflow: hidden;
}
.story_card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(23,52,124,.1); }
.story_card_inner { display: flex; flex-direction: column; gap: 16px; height: 100%; padding: 40px 32px; }
.story_video { margin: 8px -32px 0 -32px; }
.story_label {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--blue-mid);
}
.story_card blockquote {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--blue);
    line-height: 1.4;
    margin: 0;
    flex: 1;
}

/* ── NEWS ─────────────────────────────────────────────────── */
.news_sec {
    padding: 100px 80px;
    background: #fff;
}
.news_grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.news_card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(23,52,124,.1);
    text-decoration: none;
    color: var(--text);
    transition: .25s;
    display: flex;
    flex-direction: column;
}
.news_card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(23,52,124,.1); }
.news_img { height: 200px; overflow: hidden; }
.news_img img { width: 100%; height: 100%; object-fit: cover; transition: .3s; }
.news_card:hover .news_img img { transform: scale(1.04); }
.news_body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.news_cat {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--blue-mid);
}
.news_body h3 { font-size: 1.05rem; font-weight: 700; color: var(--blue); line-height: 1.35; }
.news_body p { font-size: .9rem; color: var(--text-muted); line-height: 1.55; flex: 1; }
.news_empty { color: var(--text-muted); text-align: center; padding: 40px; grid-column: 1/-1; }

/* ── ADMISSION ────────────────────────────────────────────── */
.admission {
    padding: 100px 80px;
    background: #f7f9ff;
}
.admission_steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 0;
}
.step {
    flex: 1;
    padding: 32px 28px;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid rgba(23,52,124,.09);
    position: relative;
}

.step_num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--blue);
    opacity: .12;
    line-height: 1;
    margin-bottom: 12px;
}

.inside{
    max-width: 1300px;
    margin: 0 auto;
    padding: 50px 0;
    gap: 80px;
    align-items: center;
}

#news, #stories, #campus, #jubilee, #hero, #approach{
    display: n2one;
}

.step_num_1{
    animation: step1_an 3s infinite;
    animation-delay: 0s;
}
.step_num_2{
    animation: step1_an 3s infinite;
    animation-delay: 0.3s;
}
.step_num_3{
    animation: step1_an 3s infinite;
    animation-delay: 0.6s;
}
.step_num_4{
    animation: step1_an 3s infinite;
    animation-delay: 0.9s;
}

@keyframes step1_an{
    0%{
        opacity: 0.1
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0.1
    }
}

.step h3 { font-size: 1.1rem; font-weight: 700; color: var(--blue); margin-bottom: 10px; }
.step p { font-size: .92rem; color: var(--text-muted); line-height: 1.6; }
.step_arrow {
    color: var(--blue-mid);
    font-size: 1.6rem;
    padding: 0 8px;
    margin-top: 60px;
    opacity: .35;
    flex-shrink: 0;
    align-self: center;
}

/* ── CONTACT ──────────────────────────────────────────────── */
.contact_sec {
    padding: 100px 80px;
    background: linear-gradient(135deg, var(--blue) 0%, #1e3a9e 100%);
    color: #fff;
}
.contact_inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.contact_inner h2 {
    font-size: clamp(1.6rem, 3vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.25;
}
.contact_inner p {
    font-size: 1.05rem;
    opacity: .78;
    margin-bottom: 40px;
    line-height: 1.6;
}
.contact_btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.contact_info {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,.2);
    font-size: .95rem;
    opacity: .75;
}
.contact_info a, .contact_info span { color: #fff; }
.contact_info a:hover { opacity: .8; }


/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1200px) {
    .hero { grid-template-columns: 2fr 1fr; margin-left: -40px; width: calc(100vw + 60px); }
    .hero .block2 { display: none; }
    .approach_grid { grid-template-columns: repeat(2, 1fr); }
    .campus_grid { grid-template-columns: repeat(2, 1fr); }
    .campus_card.card1, .campus_card.card5, .campus_card.card6 { grid-column: auto; }
    .campus_card.card6, .campus_card.card7 { grid-row: auto; }
}
@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; margin-left: 0; width: 100%; gap: 0; }
    .hero > div, .hero > a { transform: none; border-radius: 0; }
    .hero .block1 .block1_content { transform: none; margin: 0; padding: 80px 30px; width: 100%; }
    .hero .block1 video { transform: none; }
    .hero .block3 .block3_content { transform: none; }
    .hero .block2 { display: none; }
    .approach { padding: 60px 24px; }
    .approach_grid { grid-template-columns: 1fr; }
    .jubilee_inner { padding: 60px 24px; grid-template-columns: 1fr; gap: 40px; }
    .jubilee_visual { display: none; }
    .campus { padding: 60px 24px; }
    .campus_grid { grid-template-columns: 1fr; }
    .stories { padding: 60px 24px; }
    .stories_grid { grid-template-columns: 1fr; }
    .news_sec { padding: 60px 24px; }
    .news_grid { grid-template-columns: 1fr; }
    .admission { padding: 60px 24px; }
    .admission_steps { flex-direction: column; }
    .step_arrow { display: none; }
    .contact_sec { padding: 60px 24px; }
    .main_footer { padding: 30px 24px; }
    .footer_inner { flex-direction: column; text-align: center; gap: 20px; }
    button.openmenu { right: 16px; top: 16px; }
    nav.mainnav { right: 10px; top: 70px; width: 280px; }
    .herofooter { display: none; }
}

/* ═════════════════════════════════ INSIDE PAGE ═════════════════════════════════ */
section.inside {
    max-width: 1000px;
    margin: 100px auto;
    padding: 0 40px;
}

section.inside .content {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
}

section.inside .content p {
    margin: 0 0 12px 0;
    padding: 0;
    text-align: justify;
}

section.inside .content p:last-child {
    margin-bottom: 0;
}

section.inside .content h2 {
    font-size: 1.5rem;
    color: var(--blue);
    font-weight: 600;
    margin: 30px 0 15px 0;
    padding: 0;
    line-height: 1.3;
}

section.inside .content h2:first-child {
    margin-top: 0;
}

section.inside .content h3 {
    font-size: 1.2rem;
    color: var(--blue);
    font-weight: 600;
    margin: 20px 0 10px 0;
    padding: 0;
}

section.inside .content a {
    color: var(--blue);
    text-decoration: underline;
    font-weight: 500;
    transition: 0.2s;
}

section.inside .content a:hover {
    opacity: 0.8;
}

section.inside .content ul,
section.inside .content ol {
    margin: 10px 0 10px 25px;
    padding: 0;
}

section.inside .content ul li,
section.inside .content ol li {
    margin: 6px 0;
    padding-left: 8px;
    line-height: 1.6;
}

section.inside .content ul li:last-child,
section.inside .content ol li:last-child {
    margin-bottom: 0;
}

section.inside .content ul {
    list-style: none;
}

section.inside .content ul li {
    position: relative;
    padding-left: 20px;
}

section.inside .content ul li:before {
    content: '•';
    position: absolute;
    left: 4px;
    color: var(--blue);
    font-weight: bold;
    font-size: 1rem;
}

section.inside .content ol {
    counter-reset: item;
    list-style: none;
    margin-left: 15px;
}

section.inside .content ol li {
    counter-increment: item;
    margin-bottom: 8px;
    position: relative;
    padding-left: 28px;
}

section.inside .content ol li:before {
    content: counter(item) '.';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 600;
    width: 24px;
}

section.inside .content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    border: 2px solid var(--blue);
    background: white;
}

section.inside .content table thead tr {
    background: white;
}

section.inside .content table thead th,
section.inside .content table tbody tr:first-child td {
    padding: 16px 20px;
    text-align: left;
    border: 2px solid var(--blue);
    border-bottom: 2px solid var(--blue);
    font-weight: 600;
    color: var(--blue);
    background: white;
}

section.inside .content table tbody tr td {
    padding: 16px 20px;
    text-align: left;
    border: 1px solid #e0e0e0;
    border-right: 2px solid var(--blue);
}

section.inside .content table tbody tr td:last-child {
    border-right: 2px solid var(--blue);
}

section.inside .content table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

section.inside .content table ul {
    margin: 0;
    padding-left: 0;
}

section.inside .content table li {
    margin: 6px 0;
    padding: 0;
}

section.inside .content table a {
    display: inline-block;
    padding: 10px 24px;
    background: var(--blue);
    color: white;
    border-radius: 6px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.2s;
    white-space: nowrap;
}

section.inside .content table a:hover {
    background: #0d1f52;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(23, 52, 124, 0.3);
}

/* Скрыть MS Word стили */
section.inside .content .MsoNormalTable {
    border: none !important;
    background: transparent !important;
}

section.inside .content .MsoNormalTable td {
    border: none !important;
    padding: 0 !important;
}

section.inside .content .MsoNormal {
    margin: 0 !important;
    padding: 0 !important;
}

section.inside .content table [style*="text-indent"] {
    text-indent: 0 !important;
}

section.inside .content table [style*="font-family: \" pragmatica"] {
    font-family: inherit !important;
    font-size: inherit !important;
    font-style: inherit !important;
}

section.inside .content .ql-align-justify {
    text-align: justify;
}

section.inside .content .ql-align-center {
    text-align: center;
}

section.inside .content .ql-align-right {
    text-align: right;
}

section.inside .content em,
section.inside .content .em {
    font-style: italic;
}

section.inside .content strong {
    font-weight: 600;
    color: var(--blue);
}

section.inside .content img {
    max-width: 100%;
    margin: auto;
    display: block;
    border-radius: 20px;
}

/* ═════════════════════════════════ TIMELINE ═════════════════════════════════ */
section.section_about_page_i-nki-af-yolumuz .content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

section.section_about_page_i-nki-af-yolumuz .content::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--blue);
    top: 0;
}

section.section_about_page_i-nki-af-yolumuz .content blockquote {
    width: 45%;
    margin: 40px 0;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    position: relative;
}

section.section_about_page_i-nki-af-yolumuz .content blockquote:nth-of-type(even) {
    margin-left: auto;
    margin-right: 0;
}

section.section_about_page_i-nki-af-yolumuz .content blockquote:nth-of-type(odd) {
    margin-right: auto;
    margin-left: 0;
}

section.section_about_page_i-nki-af-yolumuz .content blockquote strong {
    display: block;
    font-size: 2.5rem;
    color: var(--blue);
    margin-bottom: 15px;
    line-height: 1;
}

section.section_about_page_i-nki-af-yolumuz .content blockquote::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid var(--blue);
    border-radius: 50%;
    top: 0;
    transform: translateY(-50%);
}

section.section_about_page_i-nki-af-yolumuz .content blockquote:nth-of-type(even)::after {
    left: -50px;
}

section.section_about_page_i-nki-af-yolumuz .content blockquote:nth-of-type(odd)::after {
    right: -50px;
}

section.section_about_page_i-nki-af-yolumuz .content p {
    clear: both;
}

@media (max-width: 768px) {
    .header-logo{
        position: fixed;
        left: 20px;
        right: 0;
        width: 200px; 
        height: auto;
        transform: translateY(-10px);
    }
    .hero .block1{
        clip-path: none !important
    }
    .hero .block1 .block1_content .logo video{
        width: 340px !important;
    }
    section.section_about_page_i-nki-af-yolumuz .content::before {
        left: 20px;
    }

    section.section_about_page_i-nki-af-yolumuz .content blockquote {
        width: calc(100% - 80px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }

    section.section_about_page_i-nki-af-yolumuz .content blockquote::after {
        left: -45px !important;
    }

    section.section_about_page_i-nki-af-yolumuz .content blockquote strong {
        font-size: 1.8rem;
    }
}

/* ═════════════════════════════════ ACCORDION ═════════════════════════════════ */
section.inside .content .accordion-block {
    margin: 20px 0;
}

section.inside .content details {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin: 12px 0;
    padding: 0;
    overflow: hidden;
    transition: 0.2s;
}

section.inside .content details:hover {
    border-color: var(--blue);
    box-shadow: 0 2px 8px rgba(23, 52, 124, 0.1);
}

section.inside .content details[open] {
    background: #f5f7ff;
    border-color: var(--blue);
}

section.inside .content summary {
    padding: 16px 20px;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.2s;
    font-weight: 500;
}

section.inside .content summary:hover {
    background: rgba(23, 52, 124, 0.05);
}

section.inside .content summary::marker {
    color: var(--blue);
    font-weight: bold;
}

section.inside .content summary::-webkit-details-marker {
    color: var(--blue);
}

section.inside .content details blockquote {
    margin: 0;
    padding: 20px;
    padding-top: 0;
    border-left: 4px solid var(--blue);
    color: #333;
    line-height: 1.6;
    background: white;
}

@media (max-width: 768px) {
    section.inside {
        margin: 60px auto;
        padding: 0 24px;
    }

    section.inside .section_head {
        margin-bottom: 40px;
        padding-bottom: 20px;
    }

    section.inside .section_head h2 {
        font-size: 1.8rem;
    }

    section.inside .content {
        font-size: 1rem;
    }

    section.inside .content h2 {
        font-size: 1.4rem;
        margin: 35px 0 15px 0;
    }

    section.inside .content h3 {
        font-size: 1.1rem;
        margin: 25px 0 12px 0;
    }

    section.inside .content summary {
        padding: 14px 16px;
    }

    section.inside .content details blockquote {
        padding: 16px;
    }
}

/* ── CONTENT ACCORDION (p > strong + blockquote) ─────────── */
.content .acc-header {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 4px;
    margin: 4px 0 0;
    border-bottom: 1px solid rgba(23,52,124,.12);
    transition: border-color 0.2s;
}
.content .acc-header:hover { border-color: var(--blue); }
.content .acc-header strong { color: var(--blue); font-size: 1rem; }
.content .acc-header::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--blue);
    line-height: 1;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}
.content .acc-header.acc-open::after { transform: rotate(45deg); }
.content .acc-body {
    height: 0;
    overflow: hidden;
    transition: height 0.4s ease;
    border-left: 3px solid var(--blue-mid);
    margin: 0;
}
.content .acc-body-inner {
    padding: 20px 20px 24px;
    color: #444;
    line-height: 1.7;
    font-size: 0.97rem;
}
