* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #F8F9FA;
    color: #0D3051;
    line-height: 1.5;
    overflow-x: hidden;
}

.section-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 34px;
    line-height: 1.2352941176470589em;
    padding-bottom: 55px;
    color: #0D3051;
}

.section-heading.white-text {
    color: #FFFFFF;
}

.hero-section {
    width: 100%;
    margin: 0 auto;
    background-image: url(./images/bg-center.svg);
    background-size: cover;
    background-position: center;
    padding-left: 314px;
    padding-right: 314px;
    background-repeat: no-repeat;
}

.hero-slider-controls-bottom {
    position: absolute;
    bottom: 42px;
    left: 314px;
    width: 276px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slider-dots-container {
    display: flex;
    gap: 14px;
    align-items: center;
    width: 105px;
    height: 6px;
}

.slider-dot {
    width: 14px;
    height: 6px;
    border-radius: 3px;
    background: rgba(207, 225, 246, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    width: 25px;
    background: #FFFFFF;
}

.slider-arrow-btn {
    width: 42px;
    height: 42px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow-btn svg path {
    stroke: #FFFFFF;
}

.hero-right-image {
    width: 49.792%;
    max-width: 956px;
    height: 680px;
    background: linear-gradient(180deg, rgba(0, 122, 255, 0) 50%, rgba(0, 122, 255, 1) 100%);
    position: relative;
}

.hero-secondary-block {
    width: 100%;
    height: 680px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 140px;
    justify-content: space-between;
    margin: 0 auto;
}

.hero-secondary-content-wrapper {
    width: 634px;
    height: 127px;
}

.hero-secondary-headline {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.2102272033691406em;
    color: #FFFFFF;
    width: 634px;
    height: 77px;
    margin-bottom: 24px;
}

.hero-secondary-paragraph {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2102272033691406em;
    color: #FFFFFF;
    width: 623px;
    height: 24px;
}

.hero-secondary-button {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 30px;
    background: #FFFFFF;
    border: none;
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 0.9em;
    color: #000000;
    cursor: pointer;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.hero-secondary-button svg path {
    stroke: #000000;
}


.history-section {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 42px 264px 0;
    background: #F8F9FA;
}

.history-intro-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5em;
    color: #3D5974;
    width: 604px;
    height: 72px;
    margin-bottom: 51px;
}

.timeline-wrapper {
    position: relative;
    width: 100%;
    max-width: 1805px;
    height: 611px;
    margin-bottom: 42px;
}

.timeline-horizontal-line {
    position: absolute;
    top: 292px;
    left: 0;
    width: 94.5%;
    max-width: 1705px;
    height: 8px;
    background: linear-gradient(90deg, rgba(223, 178, 79, 1) 0%, rgba(210, 137, 85, 1) 100%);
    border-radius: 4px;
}

.timeline-items-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1805px;
    height: 517px;
}

.timeline-year-item {
    position: relative;
    width: 304px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-year-number {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2102272510528564em;
    color: #000000;
    width: 80px;
    height: 39px;
    margin-bottom: 15px;
}

.timeline-dot-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(223, 178, 79, 1) 0%, rgba(210, 137, 85, 1) 100%);
    margin-bottom: 84px;
    position: relative;
    z-index: 2;
}

.timeline-image-box {
    width: 295px;
    height: 192px;
    background: #F8F9FA;
    border-radius: 4px;
}

.active-year .timeline-year-number {
    color: #007AFF;
    font-size: 40px;
    width: 97px;
    height: 48px;
}

.active-year .timeline-dot-circle {
    background: #007AFF;
}

.timeline-featured-card {
    width: 448px;
    height: 212px;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 12px 18px;
    box-shadow: 0px 10px 16px 0px rgba(184, 190, 213, 0.5);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-featured-year {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2102272033691406em;
    color: #007AFF;
    width: 97px;
    height: 48px;
    margin-bottom: 14px;
}

.timeline-featured-description {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5em;
    color: #3D5974;
    width: 399px;
    height: 120px;
}

.history-period-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 2.1em;
    color: #0D3051;
    width: 519px;
    height: 42px;
    margin-bottom: 0;
}

.history-divider-line {
    width: 1656px;
    height: 2px;
    background: #DAE4EE;
    margin-top: 0;
}

.strategy-section {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    height: 781px;
    position: relative;
    background: linear-gradient(0deg, rgba(0, 122, 255, 1) 0%, rgba(0, 85, 178, 1) 25%, rgba(5, 60, 132, 1) 56%, rgba(10, 35, 87, 1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 39px 264px;
}

.strategy-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 122, 255, 1) 0%, rgba(0, 85, 178, 1) 25%, rgba(5, 60, 132, 1) 56%, rgba(10, 35, 87, 1) 100%);
    z-index: 0;
}

.strategy-content-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1392px;
    text-align: left;
}

.strategy-subtitle-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2102272851126534em;
    color: #FFFFFF;
    margin-top: 27px;
    margin-bottom: 0;
}

.strategy-interactive-area {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.strategy-navigation-dots {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.strategy-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.strategy-dot.active {
    background: #FFFFFF;
    width: 20px;
    height: 20px;
}

.strategy-pdf-preview {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pdf-preview-card {
    width: 253px;
    height: 398px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 14px;
    padding: 33px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 22.666446685791016px 18.888702392578125px 0px rgba(1, 81, 169, 1);
}

.pdf-icon-wrapper {
    width: 66px;
    height: 66px;
    background: linear-gradient(180deg, rgba(223, 178, 79, 1) 0%, rgba(232, 183, 134, 1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 186px;
}

.pdf-info-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.pdf-page-count {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2102272851126534em;
    color: #3D5974;
}

.pdf-badge-box {
    width: 34px;
    height: 34px;
    background: #E65B5C;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: #FFFFFF;
}

.strategy-download-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px;
    background: #007AFF;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #FFFFFF;
    cursor: pointer;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.resources-section {
    width: 100%;
    margin: 0 auto;
    padding-left: 314px;
    padding-top: 75px;
    padding-bottom: 80px;
    background: #FFF;
}

.resources-container-wrapper {
    position: relative;
    overflow: hidden;
}

.resources-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
    will-change: transform;
}

.resource-slide-item {
    min-width: 955px;
    flex-shrink: 0;
}

.resource-card-layout {
    width: 955px;
    height: 448px;
    background: #F8F9FA;
    flex-direction: row-reverse;
    border-radius: 20px;
    padding-left: 65px;
    padding-right: 80px;
    padding-top: 90px;
    padding-bottom: 90px;
    gap: 80px;
    display: flex;
    overflow: hidden;
    position: relative;
}

.resource-image-area {
    width: 354px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px 0 0 20px;
    flex-shrink: 0;
}
.resource-image-area1{
    background-image: url(./images/image-card-layout.jpg);
}
.resource-image-area2{
    background-image: url(./images/image-card-layout2.png);
}

.resource-text-area {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.resource-title-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2102272033691406em;
    color: #0D3051;
    margin-bottom: 20px;
}

.resource-description-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.6em;
    color: #3D5974;
    margin-bottom: 20px;
    flex: 1;
}

.resource-action-button {
    padding: 14px;
    background: #007AFF;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #FFFFFF;
    cursor: pointer;
    align-self: flex-start;
}

.resources-navigation-controls {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.resources-nav-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #E5E8EE;
    font-size: 24px;
    color: #0D3051;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.resources-nav-button:hover {
    background: #007AFF;
    color: #FFFFFF;
    border-color: #007AFF;
}

.resources-controls {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    margin-bottom: 20px;
    margin-right: 0;
}

.resources-controls #prevResources {
    margin-left: 50px;
}

.resources-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #007AFF;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 20px;
    user-select: none;
}

.resources-arrow:hover {
    background: #0056b3;
    transform: scale(1.1);
}

.resources-arrow:disabled {
    background: #DAE4EE;
    cursor: not-allowed;
    opacity: 0.5;
}

.resources-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.resources-dots span {
    width: 14px;
    height: 6px;
    border-radius: 50%;
    background: rgba(207, 225, 246, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.resources-dots span.active {
    width: 25px;
    height: 6px;
    border-radius: 3px;
    background: #007AFF;
}

.branches-section {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 274px 77px;
    background: linear-gradient(0deg, rgba(0, 122, 255, 1) 0%, rgba(0, 73, 153, 1) 100%);
}

.branches-layout-container {
    display: flex;
    gap: 117px;
    align-items: flex-start;
}

.branches-map-area {
    width: 826px;
    height: 466px;
    background: #F8F9FA;
    border-radius: 20px;
    flex-shrink: 0;
}

.branches-info-section {
    flex: 1;
    padding-top: 78px;
}

.branches-subtitle-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.2102272727272727em;
    color: #FFFFFF;
    margin-bottom: 34px;
}

.branches-description-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.375em;
    color: #FFFFFF;
    margin-bottom: 94px;
}

.branches-filter-section {
    display: flex;
    flex-direction: column;
    gap: 31px;
}

.branch-filter-item {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.filter-label-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2102272245619032em;
    color: #FFFFFF;
}

.filter-chip-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #007AFF;
    border-radius: 6px;
    width: 118px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-chip-button:hover {
    background: #0056b3;
}

.filter-chip-button span {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2102272510528564em;
    color: #000000;
}

.filter-chip-button svg path {
    stroke: #000000;
}


@media (max-width: 1440px) {
    .hero-section {
        background-size: cover;
        background-position: center;
        padding-left: 80px;
        padding-right: 80px;
    }
    
    .hero-secondary-block {
        padding-left: 0;
        padding-right: 0;
        height: auto;
        min-height: 500px;
    }
    
    .hero-secondary-content-wrapper {
        width: 100%;
        max-width: 634px;
    }
    
    .hero-secondary-headline {
        width: 100%;
        max-width: 634px;
        font-size: 28px;
    }
    
    .hero-secondary-paragraph {
        width: 100%;
        max-width: 623px;
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        background-size: cover;
        background-position: center;
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .hero-secondary-block {
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 0;
        padding-bottom: 100px;
        height: auto;
        min-height: 400px;
        gap: 30px;
    }
    
    .hero-secondary-content-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-secondary-headline {
        width: 100%;
        font-size: 26px;
        height: auto;
        margin-bottom: 20px;
        line-height: 1.3em;
    }
    
    .hero-secondary-paragraph {
        width: 100%;
        font-size: 16px;
        height: auto;
        line-height: 1.4em;
    }
    
    .hero-secondary-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 16px 24px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        background-size: cover;
        background-position: center;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-secondary-block {
        padding: 40px 0;
        padding-bottom: 80px;
        min-height: 350px;
        gap: 25px;
    }
    
    .hero-secondary-headline {
        font-size: 22px;
        line-height: 1.3em;
        margin-bottom: 15px;
    }
    
    .hero-secondary-paragraph {
        font-size: 14px;
        line-height: 1.4em;
    }
    
    .hero-secondary-button {
        padding: 14px 20px;
        font-size: 16px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-section {
        background-size: cover;
        background-position: center;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-secondary-block {
        padding: 30px 0;
        padding-bottom: 60px;
        min-height: 300px;
        gap: 20px;
    }
    
    .hero-secondary-headline {
        font-size: 18px;
        line-height: 1.3em;
        margin-bottom: 12px;
    }
    
    .hero-secondary-paragraph {
        font-size: 12px;
        line-height: 1.4em;
    }
    
    .hero-secondary-button {
        padding: 12px 18px;
        font-size: 14px;
        gap: 10px;
        width: 100%;
    }
    
    .hero-secondary-button svg {
        width: 5px;
        height: 10px;
    }
}

@media (max-width: 360px) {
    .hero-section {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .hero-secondary-block {
        padding: 25px 0;
        padding-bottom: 50px;
        min-height: 280px;
        gap: 15px;
    }
    
    .hero-secondary-headline {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .hero-secondary-paragraph {
        font-size: 11px;
    }
    
    .hero-secondary-button {
        padding: 10px 16px;
        font-size: 13px;
    }
}

@media (max-width: 1920px) {
    .advantages-section,
    .history-section,
    .strategy-section,
    .branches-section {
        max-width: 100%;
        padding-left: 5%;
        padding-right: 5%;
    }
}

@media (max-width: 1440px) {
    .advantages-grid-layout {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .timeline-items-container {
        flex-wrap: wrap;
        width: 100%;
    }
    
    .branches-layout-container {
        flex-direction: column;
    }
    
    .branches-map-area {
        width: 100%;
        max-width: 826px;
    }
    
    .advantages-section,
    .history-section,
    .branches-section {
        padding-left: 80px;
        padding-right: 80px;
    }
    
    .resources-section {
        padding-left: 80px;
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .resource-slide-item {
        min-width: calc(100% - 270px);
    }
    
    .resources-controls {
        margin-right: 80px;
    }
    
    .resource-card-layout {
        width: 100%;
        max-width: 955px;
        padding-left: 50px;
        padding-right: 60px;
        padding-top: 70px;
        padding-bottom: 70px;
        gap: 60px;
    }
    
    .resource-image-area {
        width: 280px;
    }
    
    .resource-title-text {
        font-size: 18px;
    }
    
    .resource-description-text {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .advantages-section,
    .history-section,
    .branches-section {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .advantages-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .strategy-interactive-area {
        flex-direction: column;
    }
    
    .resources-section {
        padding-left: 40px;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .resources-section .section-heading {
        font-size: 28px;
    }
    
    .resource-slide-item {
        min-width: calc(100vw - 80px);
        max-width: 955px;
    }
    
    .resource-card-layout {
        width: 100%;
        height: auto;
        min-height: 400px;
        padding-left: 40px;
        padding-right: 40px;
        padding-top: 60px;
        padding-bottom: 60px;
        gap: 40px;
    }
    
    .resource-image-area {
        width: 250px;
        min-height: 250px;
    }
    
    .resource-title-text {
        font-size: 18px;
    }
    
    .resource-description-text {
        font-size: 14px;
    }
    
    .resources-controls {
        margin-right: 40px;
        gap: 15px;
    }
    
    .resources-controls #prevResources {
        margin-left: 30px;
    }
    
    .resources-arrow {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
    
    .resources-dots span {
        width: 12px;
    }
    
    .resources-dots span.active {
        width: 20px;
    }
}

@media (max-width: 900px) {
    .resources-section {
        padding-left: 30px;
        padding-top: 45px;
        padding-bottom: 45px;
    }
    
    
    .resource-image-area {
        width: 220px;
        min-height: 220px;
    }
    
    .resources-controls {
        margin-right: 30px;
    }
}

@media (max-width: 768px) {
    .advantages-section,
    .history-section,
    .branches-section {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .section-heading {
        font-size: 28px;
    }
    
    .hero-main-headline {
        font-size: 24px;
    }
    
    .hero-paragraph {
        font-size: 16px;
    }
    
    .advantages-grid-layout {
        grid-template-columns: 1fr;
    }
    
    .advantage-item {
        width: 100%;
        max-width: 290px;
    }
    
    .timeline-items-container {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-horizontal-line {
        width: 2px;
        height: 100%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .resources-section {
        padding-left: 20px;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .resources-section .section-heading {
        font-size: 24px;
    }
    
    .resource-slide-item {
        min-width: calc(100vw - 40px);
        max-width: 600px;
    }
    
    .resource-card-layout {
        flex-direction: column;
        height: auto;
        min-height: 350px;
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 40px;
        padding-bottom: 40px;
        gap: 30px;
        row-gap: 30px;
    }
    
    .resource-image-area {
        width: 100%;
        height: 250px;
        border-radius: 20px 20px 0 0;
        order: -1;
    }
    
    .resource-text-area {
        order: 1;
    }
    
    .resource-title-text {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .resource-description-text {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .resource-action-button {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
    
    .resources-navigation-controls {
        margin-top: 30px;
    }
    
    .resources-controls {
        margin-right: 20px;
        padding-bottom: 60px;
        gap: 12px;
        justify-content: center;
    }
    
    .resources-controls #prevResources {
        margin-left: 0;
    }
    
    .resources-arrow {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .resources-dots {
        gap: 6px;
    }
    
    .resources-dots span {
        width: 10px;
        height: 5px;
    }
    
    .resources-dots span.active {
        width: 18px;
        height: 5px;
    }
}

@media (max-width: 480px) {
    .advantages-section,
    .history-section,
    .branches-section {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-content-wrapper {
        width: 100%;
    }
    
    .hero-main-headline {
        width: 100%;
        font-size: 20px;
    }
    
    .hero-paragraph {
        width: 100%;
        font-size: 14px;
    }
    
    .section-heading {
        font-size: 24px;
    }
    
    .advantage-item {
        width: 100%;
    }
    
    .resources-section {
        padding-left: 15px;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    
    .resources-section .section-heading {
        font-size: 20px;
        padding-bottom: 30px;
    }
    
    .resource-slide-item {
        min-width: calc(100vw - 30px);
        height: auto;
    }
    
    .resource-card-layout {
        height: auto;
        min-height: 300px;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 30px;
        padding-bottom: 30px;
        gap: 20px;
        row-gap: 20px;
        border-radius: 15px;
    }
    
    .resource-image-area {
        height: 200px;
        border-radius: 15px 15px 0 0;
    }
    
    .resource-title-text {
        font-size: 16px;
        margin-bottom: 12px;
        line-height: 1.3em;
    }
    
    .resource-description-text {
        font-size: 13px;
        line-height: 1.5em;
        margin-bottom: 15px;
    }
    
    .resource-action-button {
        padding: 10px;
        font-size: 13px;
    }
    
    .resources-navigation-controls {
        margin-top: 25px;
        gap: 15px;
    }
    
    .resources-nav-button {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .resources-controls {
        margin-right: 15px;
        padding-bottom: 40px;
        gap: 15px;
        justify-content: center;
    }
    
    .resources-controls #prevResources {
        margin-left: 0;
    }
    
    .resources-arrow {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .resources-dots {
        gap: 6px;
    }
    
    .resources-dots span {
        width: 10px;
        height: 5px;
    }
    
    .resources-dots span.active {
        width: 18px;
        height: 5px;
    }
}

@media (max-width: 360px) {
    .resources-section {
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 25px;
        padding-bottom: 25px;
    }
    
    .resources-section .section-heading {
        font-size: 20px;
        padding-bottom: 25px;
    }
    
    .resource-card-layout {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 25px;
        padding-bottom: 25px;
        gap: 15px;
        row-gap: 15px;
        border-radius: 12px;
    }
    
    .resource-image-area {
        height: 180px;
        border-radius: 12px 12px 0 0;
    }
    
    .resource-title-text {
        font-size: 14px;
        margin-bottom: 10px;
        line-height: 1.3em;
    }
    
    .resource-description-text {
        font-size: 12px;
        line-height: 1.4em;
        margin-bottom: 12px;
    }
    
    .resource-action-button {
        padding: 8px;
        font-size: 12px;
    }
    
    .resources-controls {
        margin-right: 10px;
        padding-bottom: 30px;
        gap: 12px;
    }
    
    .resources-controls #prevResources {
        margin-left: 10px;
    }
    
    .resources-arrow {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .resources-dots span {
        width: 10px;
        height: 5px;
    }
    
    .resources-dots span.active {
        width: 18px;
        height: 5px;
    }
}

.videos-section {
    width: 100%;
    background: #E1ECF8;
    margin: 0 auto;
    padding: 29px 264px 0;
    padding-bottom: 35px;
    padding-right: 0px;
}

.videos-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 34px;
    line-height: 1.2352941176470589em;
    color: #0D3051;
    margin-bottom: 40px;
}

.videos-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.videos-tab {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2102272033691406em;
    padding: 10px 14px;
    background: #FFFFFF;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    color: #007aff;
}


.videos-slider-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
}

.videos-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.3s ease;
    will-change: transform;
}

.video-card {
    flex-shrink: 0;
    width: 683px;
    height: 485px;
    border-radius: 12px;
    overflow: hidden;
    background: #066cda;
    position: relative;
}

.video-thumb {
    width: 100%;
    height: 384px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-info {
    padding: 27px;
    padding-right: 42px;
    height: 101px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.video-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2102272245619032em;
    color: #FFFFFF;
    margin-bottom: 10px;
}



.video-link {
    display: flex;
    justify-content: flex-end;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2102272851126534em;
    color: #FFFFFF;
    cursor: pointer;
    transition: color 0.3s;
}

.videos-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    margin-bottom: 20px;
    margin-right: 264px;
}

.videos-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #007AFF;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 20px;
    user-select: none;
}

.videos-arrow #prev{
    margin-left: 65px;
}

.videos-arrow:hover {
    background: #0056b3;
    transform: scale(1.1);
}

.videos-arrow:disabled {
    background: #DAE4EE;
    cursor: not-allowed;
    opacity: 0.5;
}

.videos-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.videos-dots span {
    width: 14px;
    height: 6px;
    border-radius: 50%;
    background: rgba(207, 225, 246, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.videos-dots span.active {
    width: 25px;
    height: 6px;
    border-radius: 3px;
    background: #007AFF;
}

.videos-view-all {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.videos-view-all button {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.125em;
    color: #496078;
    background: #FFFFFF;
    border: none;
    padding: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
    border-radius: 8px;
}

.videos-view-all button:hover {
    color: #007AFF;
}

.videos-view-all button::after {
    content: '';
    width: 5px;
    height: 10px;
    background: url("data:image/svg+xml,%3Csvg width='5' height='10' viewBox='0 0 5 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L4 5L1 9' stroke='%23496078' stroke-width='3'/%3E%3C/svg%3E") no-repeat center;
    transition: all 0.3s;
}

.videos-view-all button:hover::after {
    background: url("data:image/svg+xml,%3Csvg width='5' height='10' viewBox='0 0 5 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L4 5L1 9' stroke='%23007AFF' stroke-width='3'/%3E%3C/svg%3E") no-repeat center;
}

@media (max-width: 1440px) {
    .videos-section {
        padding-left: 80px;
    }
    
    .video-card {
        width: 600px;
        height: 450px;
    }
    
    .video-thumb {
        height: 350px;
    }
    
    .videos-controls {
        margin-right: 80px;
    }
    
    .videos-arrow #prev {
        margin-left: 50px;
    }
}

@media (max-width: 1024px) {
    .videos-section {
        padding-left: 40px;
    }
    
    .videos-title {
        font-size: 28px;
    }
    
    .video-card {
        width: calc(100vw - 80px);
        max-width: 600px;
        height: auto;
        min-height: 400px;
    }
    
    .video-thumb {
        height: 300px;
    }
    
    .videos-tabs {
        margin-bottom: 60px;
    }
    
    .videos-controls {
        margin-right: 40px;
        gap: 15px;
    }
    
    .videos-arrow {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
    
    .videos-arrow #prev {
        margin-left: 30px;
    }
    
    .videos-dots span {
        width: 12px;
    }
    
    .videos-dots span.active {
        width: 20px;
    }
}

@media (max-width: 768px) {
    .videos-section {
        padding-left: 20px;
    }
    
    .videos-title {
        font-size: 24px;
    }
    
    .video-card {
        width: calc(100vw - 40px);
        max-width: 600px;
        height: auto;
        min-height: 350px;
    }
    
    .video-thumb {
        height: 250px;
    }
    
    .video-title {
        font-size: 16px;
    }
    
    .videos-tabs {
        margin-bottom: 40px;
        flex-wrap: wrap;
    }
    
    .videos-tab {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .videos-controls {
        margin-right: 20px;
        gap: 12px;
        justify-content: center;
    }
    
    .videos-arrow {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .videos-arrow #prev {
        margin-left: 0;
    }
    
    .videos-dots {
        gap: 6px;
    }
    
    .videos-dots span {
        width: 10px;
        height: 5px;
    }
    
    .videos-dots span.active {
        width: 18px;
        height: 5px;
    }
}

@media (max-width: 480px) {
    .videos-section {
        padding-left: 15px;
    }
    
    .videos-title {
        font-size: 20px;
    }
    
    .video-card {
        width: calc(100vw - 30px);
        height: auto;
        min-height: 300px;
    }
    
    .video-thumb {
        height: 200px;
    }
    
    .video-info {
        padding: 20px;
    }
    
    .video-title {
        font-size: 14px;
    }
    
    .video-link {
        font-size: 12px;
    }
    
    .videos-controls {
        margin-right: 15px;
        gap: 10px;
        justify-content: center;
    }
    
    .videos-arrow {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .videos-arrow #prev {
        margin-left: 0;
    }
    
    .videos-dots {
        gap: 5px;
    }
    
    .videos-dots span {
        width: 8px;
        height: 4px;
    }
    
    .videos-dots span.active {
        width: 15px;
        height: 4px;
    }
}

.creative-center-section {
    width: 100%;
    margin: 0 auto;
    padding: 30px 264px;
    padding-right: 0px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.creative-slider-wrapper {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    height: 536px;
}

.creative-slider-track {
    display: flex;
    width: max-content;
    gap: 20px;
    height: 100%;
    transition: transform 0.3s ease;
    will-change: transform;
}

.creative-slide {
    max-width: 955px;
    height: 536px;
    flex-shrink: 0;
    display: flex;
    border-radius: 20px;
    background: #f8f9fa;
    align-items: center;
    gap: 0;
    position: relative;
}

.creative-slide-text {
    width: 624px;
    padding: 60px 0px 60px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.creative-slide-text h3 {
    font-family: 'Inter', sans-serif;
    line-height: 1.2102272033691406em;
    color: #0D3051;
    margin-bottom: 60px;
    font-weight: 700;
    font-size: 20px;
}

.creative-slide-text p {
    font-family: 'Inter', sans-serif;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 15px;
    line-height: 160%;
    color: #3d5974;
}

.creative-slide-text p:last-child {
    margin-bottom: 0;
}

.creative-slide-image {
    width: 697px;
    height: 536px;
    border-radius: 12px;
    overflow: hidden;
}

.creative-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.creative-controls {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    margin-bottom: 20px;
    margin-right: 264px; 
}

.creative-controls #prevCreative{
    margin-left: 50px;
}

.creative-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #007AFF;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 20px;
    user-select: none;
}

.creative-arrow:hover {
    background: #0056b3;
    transform: scale(1.1);
}

.creative-arrow:disabled {
    background: #DAE4EE;
    cursor: not-allowed;
    opacity: 0.5;
}

.creative-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.creative-dots span {
    width: 14px;
    height: 6px;
    border-radius: 50%;
    background: rgba(207, 225, 246, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.creative-dots span.active {
    width: 25px;
    height: 6px;
    border-radius: 3px;
    background: #007AFF;
}

@media (max-width: 1440px) {
    .creative-center-section {
        padding-left: 80px;
    }
    
    .creative-slider-wrapper {
        height: auto;
        min-height: 450px;
    }
    
    .creative-slide {
        max-width: 800px;
        height: auto;
        min-height: 450px;
    }
    
    .creative-slide-image {
        width: 50%;
        height: 100%;
        min-height: 450px;
    }
    
    .creative-slide-text {
        width: 50%;
        padding: 40px 30px;
    }
    
    .creative-controls .history__controls{
        margin-right: 80px;
    }
}

@media (max-width: 1024px) {
    .creative-center-section {
        padding-left: 40px;
    }
    
    .creative-slider-wrapper {
        height: auto;
        min-height: 400px;
    }
    
    .creative-slide {
        max-width: 700px;
        min-height: 400px;
    }
    
    .creative-slide-image {
        width: 45%;
        min-height: 400px;
    }
    
    .creative-slide-text {
        width: 55%;
        padding: 30px 20px;
    }
    
    .creative-slide-text h3 {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .creative-slide-text p {
        font-size: 14px;
    }
    
    .creative-controls .history__controls{
        margin-right: 40px;
    }
    
    .creative-controls #prevCreative {
        margin-left: 30px;
    }
}

@media (max-width: 768px) {
    .creative-center-section {
        padding-left: 20px;
    }
    
    .creative-slider-wrapper {
        height: auto;
        min-height: 350px;
    }
    
    .creative-slide {
        max-width: 600px;
        min-height: 350px;
    }
    
    .creative-slide-image {
        width: 40%;
        min-height: 350px;
    }
    
    .creative-slide-text {
        width: 60%;
        padding: 25px 15px;
    }
    
    .creative-slide-text h3 {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .creative-slide-text p {
        font-size: 13px;
    }
    
    .history__controls{
        margin-right: 20px;
    }
    
    .creative-controls {
        margin-right: 20px;
        padding-bottom: 60px;
    }
    
    .creative-controls #prevCreative {
        margin-left: 20px;
    }
    
    .creative-arrow {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .creative-center-section {
        padding-left: 15px;
    }
    
    .creative-slider-wrapper {
        height: auto;
        min-height: 300px;
    }
    
    .creative-slide {
        min-height: 300px;
    }
    
    .creative-slide-image {
        width: 35%;
        min-height: 300px;
    }
    
    .creative-slide-text {
        width: 65%;
        padding: 20px 10px;
    }
    
    .creative-slide-text h3 {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .creative-slide-text p {
        font-size: 12px;
    }
    
    .creative-arrow {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .history__controls{
        margin-right: 15px;
    }
    
    .creative-controls {
        margin-right: 15px;
        padding-bottom: 40px;
        gap: 15px;
    }
    
    .creative-controls #prevCreative {
        margin-left: 15px;
    }
    
    .creative-dots span {
        width: 12px;
    }
    
    .creative-dots span.active {
        width: 20px;
    }
}

.interactive-cards-section {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 75px 314px 80px;
    background: #F8F9FA;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.interactive-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 20px 0px rgba(43, 47, 56, 0.25);
    display: flex;
    flex-direction: column;
}

.interactive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 30px 0px rgba(43, 47, 56, 0.35);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #F8F9FA;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.interactive-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2102272033691406em;
    color: #0D3051;
    margin: 0;
}

.card-preview {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.6em;
    color: #3D5974;
    margin: 0;
}

.card-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.card-info-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: #FFFFFF;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1001;
    box-shadow: 0px 22px 40px 0px rgba(43, 47, 56, 0.4);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: #F8F9FA;
    border-radius: 50%;
    font-size: 24px;
    color: #0D3051;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 1002;
    line-height: 1;
}

.modal-close:hover {
    background: #007AFF;
    color: #FFFFFF;
    transform: rotate(90deg);
}

.modal-body {
    padding: 60px;
}

.modal-body h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2102272033691406em;
    color: #0D3051;
    margin-bottom: 24px;
}

.modal-body p {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.6em;
    color: #3D5974;
    margin-bottom: 20px;
}

.modal-body p:last-child {
    margin-bottom: 0;
}

.modal-body .modal-image {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
}

.modal-body .modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1440px) {
    .interactive-cards-section {
        padding-left: 80px;
        padding-right: 80px;
    }
    
    .cards-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .interactive-cards-section {
        padding-left: 40px;
        padding-right: 40px;
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .cards-container {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 18px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .card-title {
        font-size: 18px;
    }
    
    .card-preview {
        font-size: 14px;
    }
    
    .modal-body {
        padding: 40px;
    }
    
    .modal-body h2 {
        font-size: 24px;
    }
    
    .modal-body p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .interactive-cards-section {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .cards-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
    }
    
    .card-image {
        height: 180px;
    }
    
    .card-content {
        padding: 18px;
    }
    
    .card-title {
        font-size: 16px;
    }
    
    .card-preview {
        font-size: 13px;
    }
    
    .modal-content {
        max-width: 95%;
        max-height: 95vh;
    }
    
    .modal-body {
        padding: 30px 20px;
    }
    
    .modal-body h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .modal-body p {
        font-size: 14px;
    }
    
    .modal-close {
        width: 36px;
        height: 36px;
        font-size: 20px;
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .interactive-cards-section {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .interactive-cards-section .section-heading {
        font-size: 24px;
        padding-bottom: 30px;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .card-image {
        height: 160px;
    }
    
    .card-content {
        padding: 16px;
    }
    
    .card-title {
        font-size: 16px;
    }
    
    .card-preview {
        font-size: 13px;
    }
    
    .modal-body {
        padding: 25px 18px;
    }
    
    .modal-body h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .modal-body p {
        font-size: 13px;
    }
}

.branches {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding: 75px 274px 77px;
}


.branches__container {
    width: 100%;
}

.branches__title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 34px;
    line-height: 1.2352941176470589em;
    color: #0d3051;
    margin-bottom: 55px;
}

.branches__content {
    display: flex;
    gap: 117px;
    background: linear-gradient(0deg, rgba(0, 122, 255, 1) 0%, rgba(0, 73, 153, 1) 100%);
    align-items: center;
    padding: 80px;
    border-radius: 20px;
}

.branches__map {
    width: 826px;
    height: 466px;
    max-width: 826px;
    max-height: 466px;
    border-radius: 20px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.branches__map-img {
    width: 100%;
    height: 100%;
    background: url(./images/map.svg) center center / cover no-repeat;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.branches__map-img-active{
    background: url(./images/map-almaty.svg) center center / cover no-repeat;
}

.branches__region {
    position: absolute;
    cursor: pointer;
    border: none;
    background: none;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 10;
    padding: 0;
    transform: translate(-50%, -50%);
}

.branches__region img {
    width: 100%;
    height: 100%;
    display: block;
}

.branches__map-img {
    transition: background 0.3s ease;
}

.branches__info {
    flex: 1;
    padding-top: 78px;
}

.branches__info-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.2102272727272727em;
    color: #FFFFFF;
    margin-bottom: 34px;
}

.branches__info-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.375em;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.branches__info-text:last-of-type {
    margin-bottom: 94px;
}

.branches__dynamic {
    display: flex;
    flex-direction: column;
    gap: 31px;
}

.branches__select {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.branches__select-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2102272245619032em;
    color: #FFFFFF;
}

.branches__select-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #fff;
    border: none;
    border-radius: 6px;
    width: 100%;
    max-width: 300px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2102272510528564em;
    color: #000000;
    text-align: left;
}

.branches__select-btn:hover {
    background: #0056b3;
}

.branches__select-icon {
    font-size: 20px;
    color: #000000;
    margin-left: auto;
}

@media (max-width: 1952px) {
    .branches {
        padding-left: 200px;
        padding-right: 200px;
    }
    
    .branches__content {
        gap: 100px;
        padding: 70px;
    }
    
    .branches__map {
        width: 750px;
        height: 423px;
        max-width: 750px;
        max-height: 423px;
    }
   
}

@media (max-width: 1600px) {
    .branches {
        padding-left: 120px;
        padding-right: 120px;
    }
    
    .branches__content {
        gap: 80px;
        padding: 65px;
    }
    
    .branches__map {
        width: 720px;
        height: 406px;
        max-width: 720px;
        max-height: 406px;
    }
  
}

@media (max-width: 1440px) {
    .branches {
        padding-left: 80px;
        padding-right: 80px;
    }
    
    .branches__container {
        width: 100%;
        max-width: 100%;
    }
    
    .branches__content {
        gap: 60px;
        padding: 60px;
    }
    
    .branches__map {
        width: 700px;
        height: 395px;
        max-width: 700px;
        max-height: 395px;
    }
  
    .branches__info {
        padding-top: 0;
    }
}

@media (max-width: 1200px) {
    .branches {
        padding-left: 60px;
        padding-right: 60px;
    }
    
    .branches__content {
        gap: 50px;
        padding: 50px;
    }
    
    .branches__map {
        width: 600px;
        height: 339px;
        max-width: 600px;
        max-height: 339px;
    }
    
}

@media (max-width: 1100px) {
    .branches__content {
        flex-direction: column;
        align-items: center;
    }
    
    .branches__map {
        max-width: 700px;
        height: auto;
        aspect-ratio: 826 / 466;
    }
    
    .branches__info {
        width: 100%;
        padding-top: 0;
    }
}

@media (max-width: 1024px) {
    .branches {
        padding-left: 40px;
        padding-right: 40px;
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .branches__container {
        width: 100%;
        max-width: 100%;
    }
    
    .branches__title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .branches__content {
        flex-direction: column;
        gap: 40px;
        padding: 50px 40px;
    }
    
    .branches__map {
        height: auto;
        aspect-ratio: 826 / 466;
    }
    
    .branches__info {
        padding-top: 0;
        width: 100%;
    }
    
    .branches__info-title {
        font-size: 20px;
        margin-bottom: 24px;
    }
    
    .branches__info-text {
        font-size: 15px;
        margin-bottom: 16px;
    }
    
    .branches__info-text:last-of-type {
        margin-bottom: 60px;
    }
    
    .branches__dynamic {
        gap: 24px;
    }
    
    .branches__select-btn {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .branches {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .branches__container {
        width: 100%;
    }
    
    .branches__title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .branches__content {
        gap: 30px;
        padding: 40px 30px;
        border-radius: 16px;
    }
    
    .branches__map {
        max-width: 100%;
        height: auto;
        aspect-ratio: 826 / 466;
    }
    
    .branches__info {
        width: 100%;
    }
    
    .branches__info-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .branches__info-text {
        font-size: 14px;
        margin-bottom: 14px;
    }
    
    .branches__info-text:last-of-type {
        margin-bottom: 40px;
    }
    
    .branches__dynamic {
        gap: 20px;
    }
    
    .branches__select-label {
        font-size: 16px;
    }
    
    .branches__select-btn {
        font-size: 14px;
        padding: 8px 12px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .branches {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .branches__container {
        width: 100%;
    }
    
    .branches__title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .branches__content {
        padding: 30px 20px;
        gap: 25px;
        border-radius: 12px;
    }
    
    .branches__map {
        max-width: 100%;
        height: auto;
        aspect-ratio: 826 / 466;
    }
    
    .branches__info {
        width: 100%;
    }
    
    .branches__info-title {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .branches__info-text {
        font-size: 13px;
        margin-bottom: 12px;
        line-height: 1.4em;
    }
    
    .branches__info-text:last-of-type {
        margin-bottom: 30px;
    }
    
    .branches__dynamic {
        gap: 18px;
    }
    
    .branches__select {
        gap: 10px;
    }
    
    .branches__select-label {
        font-size: 14px;
    }
    
    .branches__select-btn {
        font-size: 13px;
        padding: 8px 10px;
        max-width: 100%;
    }
}

@media (max-width: 700px) {
    .branches__region img{
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 525px) {
    .branches__region img{
        width: 80px;
        height: 80px;
    }
}

.advantages {
    width: 100%;
    margin: 0 auto;
    padding: 75px 314px 80px;
    background: #FFFFFF;
}

.advantages__title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 34px;
    line-height: 1.2352941176470589em;
    color: #0D3051;
    margin-bottom: 55px;
}

.advantages__list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding-bottom: 10px;
    gap: 24px;
}

.adv-card {
    background: #FFFFFF;
    padding: 25px;
    display: flex;
    width: 100%;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.adv-card:hover {
    transform: translateY(-15px) translateX(-5px);
    border-radius: 14px;
    box-shadow: 0 23px 19px 0 rgba(184, 190, 213, 0.5);
    background: #066cda;
}

.adv-card:hover .adv-card__title{
    color: #FFFFFF;
}

.adv-card:hover .adv-card__text{
    color: #FFFFFF;
    opacity: 1;
    max-height: 200px;
}

.adv-card__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adv-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.adv-card__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2102272033691406em;
    color: #0D3051;
    margin-bottom: 16px;
}

.adv-card__text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.6em;
    color: #3D5974;
    margin-bottom: 0;
    flex: 1;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease;
}

.adv-card__indicator {
    position: absolute;
    bottom: -30px;
    left: 13px;
    right: 0;
    border-radius: 100%;
    height: 14px;
    width: 14px;
    background: #007aff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.adv-card:hover .adv-card__indicator {
    opacity: 1;
}

@media (max-width: 1440px) {
    .advantages {
        padding-left: 80px;
        padding-right: 80px;
    }
    
    .advantages__list {
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .advantages {
        padding-left: 40px;
        padding-right: 40px;
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .advantages__title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .advantages__list {
        grid-template-columns: repeat(5, 1fr);
        gap: 18px;
    }
    
    .adv-card {
        padding: 28px;
    }
    
    .adv-card__icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }
    
    .adv-card__title {
        font-size: 18px;
        margin-bottom: 14px;
    }
    
    .adv-card__text {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .advantages {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .advantages__title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .advantages__list {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 16px;
    }
    
    .adv-card {
        padding: 24px;
    }
    
    .adv-card__icon {
        width: 52px;
        height: 52px;
        margin-bottom: 18px;
    }
    
    .adv-card__title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .adv-card__text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .advantages {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .advantages__title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .adv-card {
        padding: 20px;
    }
    
    .adv-card__icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }
    
    .adv-card__title {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .adv-card__text {
        font-size: 12px;
        line-height: 1.5em;
    }
}


  .history {
    width: 100%;
    position: relative;
    margin: 0 auto;
    padding: 75px 314px 0px;
    padding-right: 0px;
    background: #F8F9FA;
    overflow: visible;
  }
  
  .history__top {
    margin-bottom: 55px;
    max-width: 604px;
  }
  
  .history__title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 34px;
    line-height: 1.2352941176470589em;
    color: #0D3051;
    margin-bottom: 10px;
  }
  
  .history__subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5em;
    color: #3D5974;
    margin-bottom: 20px;
  }
  
  .history__desc {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5em;
    color: #3D5974;
    max-width: 604px;
    margin-bottom: 0;
  }
  
  .history__timeline {
    position: absolute;
    height: 120px;
    width: 100%;
    top: 279px;
  }
  
  .history__line {
    height: 8px;
    background: linear-gradient(90deg, rgba(223, 178, 79, 1) 0%, rgba(210, 137, 85, 1) 100%);
    position: absolute;
    top: 58px;
    left: 0;
    width: calc(100vw - 314px);
    border-radius: 4px;
    z-index: 1;
  }
  
  @media (min-width: 1921px) {
    .history__line {
      width: calc(100vw - 314px);
    }
  }
  
  .history__year {
    position: absolute;
    text-align: center;
    transform: translateX(-50%);
    top: 0;
    cursor: pointer;
  }
  
  .history__year span {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2102272510528564em;
    color: #000000;
    display: block;
    margin-bottom: 15px;
  }
  
  .history__year--dot::before {
    content: "";
    width: 20px;
    height: 20px;
    background: linear-gradient(180deg, rgba(223, 178, 79, 1) 0%, rgba(210, 137, 85, 1) 100%);
    border-radius: 50%;
    position: absolute;
    top: 13px;
    left: -30%;
    transform: translateX(-50%);
    z-index: 2;
  }
  
  .history__year--active span {
    font-size: 40px;
    color: #007AFF;
  }
  
  
  .history__popup {
    transition: all 0.3s ease;
    position: absolute;
    top: 65px;
    left: 87vw;
    transform: translateX(-50%);
    padding: 12px 18px;
    width: 448px;
    background: #f8f9fa;
    box-shadow: 0 10px 16px 0 rgba(184, 190, 213, 0.5);
    border-radius: 10px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
  }

  .history__popup::after{
    content: url('./images/vertical-line.svg');
    position: absolute;
    top: 22px;
    left: -34px;
  }
  
  .history__popup.active {
    opacity: 1;
    visibility: visible;
  }
  
  .history__popup h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2102272033691406em;
    color: #007AFF;
    margin-bottom: 14px;
  }
  
  .history__popup p {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5em;
    color: #3D5974;
    margin: 0;
  }
  
  .history__year--active:hover .history__popup {
    opacity: 1;
    visibility: visible;
  }
  
  .history__slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
  }
  
  .history__slider-track {
    display: flex;
    gap: 65px;
    align-items: flex-end;
    transition: transform 0.3s ease;
    will-change: transform;
    width: max-content;
  }
  
  .history__slide {
    position: relative;
    border-radius: 4px;
    overflow: visible;
    min-width: 304px;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  
  .history__slide img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    transition: transform 0.3s ease;
    display: block;
  }

  .history__slide-img-active{
    display: flex;
    justify-content: flex-end;
    box-shadow: 0 8px 20px 0 rgba(112, 119, 145, 0.8);
  }
  


  .history__img-popup {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    position: fixed;
    transform: translateX(-50%) translateY(10px);
    width: calc(100% - 40px);
    max-width: 400px;
    padding: 24px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    pointer-events: none;
  }
  
  .history__slide:hover .history__img-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
  
  .history__slide {
    position: relative;
  }
  
  .history__popup-text {
    margin-bottom: 20px;
    color: #0D3051;
    width: 100%;
  }
  
  .history__popup-text h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2em;
    color: #0D3051;
    margin-bottom: 8px;
  }
  
  .history__popup-text p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5em;
    color: #3D5974;
    margin: 0;
  }
  
  .history__events-slider {
    position: relative;
    width: 100%;
    margin-top: 16px;
  }
  
  .history__events-track {
    display: flex;
    gap: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .history__event-item {
    min-width: 160px;
    background: #F8F9FA;
    border-radius: 8px;
    padding: 12px 16px;
    border: 1px solid #DAE4EE;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }
  
  .history__event-item:hover {
    background: #E8F0F8;
    border-color: #007AFF;
  }
  
  .history__event-year {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2em;
    color: #0D3051;
    margin-bottom: 6px;
  }
  
  .history__event-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.4em;
    color: #3D5974;
  }
  
  .history__events-controls {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    justify-content: flex-end;
    align-items: center;
  }
  
  .history__events-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #007AFF;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 700;
    border: none;
    pointer-events: auto;
  }
  
  .history__events-arrow:hover {
    background: #0056b3;
    transform: scale(1.05);
  }
  
  .history__events-arrow:active {
    transform: scale(0.95);
  }
  
  .history__events-arrow:disabled {
    background: #DAE4EE;
    color: #8FA5B8;
    cursor: not-allowed;
    opacity: 0.6;
  }
  
  .history__controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    margin-right: 264px;
    margin-top: 20px;
  }
  
  .history__dots {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  
  .history__dots span {
    width: 14px;
    height: 6px;
    border-radius: 50%;
    background: rgba(207, 225, 246, 0.5);
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .history__dots span.active {
    width: 25px;
    height: 6px;
    border-radius: 3px;
    background: #007AFF;
  }
  
  .history__arrow {
    width: 42px;
    height: 42px;
    background: #007AFF;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
    font-weight: 700;
    user-select: none;
  }
  
  .history__arrow:hover {
    background: #0056b3;
    transform: scale(1.1);
  }
  
  .history__arrow:disabled {
    background: #DAE4EE;
    cursor: not-allowed;
    opacity: 0.5;
  }
  
  .history__controls #prevHistory {
    margin-left: 50px;
  }
  
  @media (max-width: 1440px) {
    .history {
      padding-left: 80px;
    }

    .history__popup{
        top: 50px;
    }
    
    .history__line {
      width: calc(100vw - 80px);
    }
    
    .history__title {
      font-size: 30px;
    }
    
    .history__subtitle {
      font-size: 17px;
    }
    
    .history__desc {
      font-size: 15px;
      max-width: 100%;
    }
    
    .history__timeline {
      height: 100px;
      top: 250px;
    }
    
    .history__year span {
      font-size: 28px;
    }
    
    .history__year--active span {
      font-size: 36px;
    }
    
    .history__popup {
      width: 380px;
      padding: 10px 16px;
      left: 85%;
    }
    
    .history__popup h3 {
      font-size: 32px;
    }
    
    .history__popup p {
      font-size: 14px;
    }
    
    .history__controls {
      margin-right: 80px;
    }
    
    .history__img-popup {
      padding: 24px;
    }
    
    .history__popup-text h4 {
      font-size: 20px;
    }
    
    .history__popup-text p {
      font-size: 14px;
    }
    
    .history__event-item {
      min-width: 160px;
      padding: 14px;
    }
    
    .history__event-year {
      font-size: 18px;
    }
    
    .history__event-text {
      font-size: 12px;
    }
    
    .history__slider-track {
      gap: 50px;
    }
    
  }
  
  @media (max-width: 1024px) {
    .history {
      padding-left: 40px;
      padding-top: 60px;
      padding-bottom: 60px;
    }
    
    .history__line {
      width: calc(100vw - 40px);
    }
    
    .history__title {
      font-size: 28px;
    }
    
    .history__subtitle {
      font-size: 16px;
    }
    
    .history__desc {
      font-size: 15px;
    }
    
    .history__timeline {
      height: 90px;
      top: 220px;
      margin-bottom: 40px;
    }
    
    .history__year span {
      font-size: 24px;
    }
    
    .history__year--active span {
      font-size: 28px;
    }
    
    .history__top {
      margin-bottom: 35px;
    }
    
    .history__popup {
      width: 320px;
      padding: 10px 14px;
      left: 80%;
      top: 40px;
    }
    
    .history__popup h3 {
      font-size: 28px;
      margin-bottom: 10px;
    }
    
    .history__popup p {
      font-size: 13px;
    }

    .history__img-popup {
      padding: 20px;
    }
    
    .history__popup-text {
      margin-bottom: 20px;
    }
    
    .history__popup-text h4 {
      font-size: 18px;
    }
    
    .history__popup-text p {
      font-size: 13px;
    }
    
    .history__event-item {
      min-width: 140px;
      padding: 12px;
    }
    
    .history__event-year {
      font-size: 16px;
    }
    
    .history__event-text {
      font-size: 11px;
    }
    
    .history__events-arrow {
      width: 28px;
      height: 28px;
      font-size: 16px;
    }
    
    .history__slider-track {
      gap: 40px;
    }
    
    
    .history__controls {
      margin-right: 40px;
    }
    
    .history__controls #prevHistory {
      margin-left: 30px;
    }
  }
  
  @media (max-width: 768px) {
    .history {
      padding-left: 20px;
      padding-top: 50px;
      padding-bottom: 50px;
    }
    
    .history__line {
      width: calc(100vw - 20px);
    }
    
    .history__title {
      font-size: 24px;
    }
    
    .history__subtitle {
      font-size: 14px;
    }
    
    .history__desc {
      font-size: 14px;
    }
    
    .history__timeline {
      height: 80px;
      top: 180px;
      margin-bottom: 30px;
    }
    
    .history__year span {
      font-size: 20px;
    }
    
    .history__year--active span {
      font-size: 24px;
    }
    
    .history__top {
      margin-bottom: 30px;
    }
    
    .history__slider-wrapper {
      margin-bottom: 15px;
    }
    
    .history__popup {
      width: 280px;
      padding: 8px 12px;
      left: 75%;
      top: 30px;
    }
    
    .history__popup h3 {
      font-size: 24px;
      margin-bottom: 8px;
    }
    
    .history__popup p {
      font-size: 12px;
    }
    
    .history__arrow {
      width: 38px;
      height: 38px;
      font-size: 18px;
    }
    
    .history__img-popup {
      padding: 16px;
    }
    
    .history__popup-text {
      margin-bottom: 16px;
    }
    
    .history__popup-text h4 {
      font-size: 16px;
      margin-bottom: 8px;
    }
    
    .history__popup-text p {
      font-size: 12px;
    }
    
    .history__event-item {
      min-width: 120px;
      padding: 10px;
    }
    
    .history__event-year {
      font-size: 14px;
    }
    
    .history__event-text {
      font-size: 10px;
    }
    
    .history__events-arrow {
      width: 24px;
      height: 24px;
      font-size: 14px;
    }
    
    .history__slider-track {
      gap: 30px;
    }
    
    
    .history__controls {
      margin-right: 20px;
    }
    
    .history__controls #prevHistory {
      margin-left: 20px;
    }
    
    .history__arrow {
      width: 38px;
      height: 38px;
      font-size: 18px;
    }
  }
  
  @media (max-width: 480px) {
    .history {
      padding-left: 15px;
      padding-top: 40px;
      padding-bottom: 40px;
    }
    
    .history__line {
      width: calc(100vw - 15px);
    }
    
    .history__title {
      font-size: 22px;
    }
    
    .history__subtitle {
      font-size: 13px;
    }
    
    .history__desc {
      font-size: 13px;
    }
    
    .history__timeline {
      height: 70px;
      top: 150px;
      margin-bottom: 25px;
    }
    
    .history__year span {
      font-size: 18px;
    }
    
    .history__year--active span {
      font-size: 20px;
    }
    
    .history__top {
      margin-bottom: 25px;
    }
    
    .history__slider-wrapper {
      margin-bottom: 15px;
    }
    
    .history__popup {
      width: calc(100% - 30px);
      max-width: 280px;
      padding: 8px 12px;
      left: 50%;
      top: 20px;
      transform: translateX(-50%);
      position: fixed;
      z-index: 1000;
    }
    
    .history__popup h3 {
      font-size: 20px;
      margin-bottom: 6px;
    }
    
    .history__popup p {
      font-size: 11px;
    }
    
    .history__arrow {
      width: 36px;
      height: 36px;
      font-size: 16px;
    }
    
    .history__dots span {
      width: 12px;
      height: 5px;
    }
    
    .history__dots span.active {
      width: 20px;
    }
    
    .history__img-popup {
      padding: 12px;
    }
    
    .history__popup-text {
      margin-bottom: 12px;
    }
    
    .history__popup-text h4 {
      font-size: 14px;
      margin-bottom: 6px;
    }
    
    .history__popup-text p {
      font-size: 11px;
    }
    
    .history__event-item {
      min-width: 100px;
      padding: 8px;
    }
    
    .history__event-year {
      font-size: 12px;
      margin-bottom: 6px;
    }
    
    .history__event-text {
      font-size: 9px;
    }
    
    .history__events-arrow {
      width: 20px;
      height: 20px;
      font-size: 12px;
    }
    
    .history__slider-track {
      gap: 20px;
    }
    
    .history__controls {
      margin-right: 15px;
      gap: 15px;
    }
    
    .history__controls #prevHistory {
      margin-left: 15px;
    }
    
    .history__arrow {
      width: 36px;
      height: 36px;
      font-size: 16px;
    }
    
    .history__dots span {
      width: 12px;
    }
    
    .history__dots span.active {
      width: 20px;
    }
  }
  
  @media (max-width: 2035px) {
    .history__popup{
        left: 83vw;
    }
  }

  @media (max-width: 1251px) {
    .history__popup{
        left: 75vw;
    }
  }


.strategy {
    position: relative;
    background-image: url(./images/bg.jpg);
    padding: 80px 314px;
    z-index: 2;
    min-height: 650px;
  }
  
  #particles-js {
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  
  .left-text {
    position: relative;
    z-index: 3;
    max-width: 600px;
  }
  
  .left-text h1 {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2em;
    color: #FFFFFF;
    margin: 0;
    margin-bottom: 10px;
  }
  
  .left-text .sub {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5em;
    max-width: 330px;
    color: #FFFFFF;
    margin: 0;
    margin-top: 10px;
    opacity: 0.8;
  }
  
  .path-wrapper {
    z-index: 3;
    margin-top: 80px;
    position: relative;
    height: 300px;
    width: 100%;
    max-width: 1920px;
  }
  
  .line {
    width: 100%;
    pointer-events: none;
    user-select: none;
    opacity: 0.6;
  }
  
  .point {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    cursor: pointer;
    box-shadow: 0 0 12px 4px rgba(255,255,255,0.8);
    transition: 0.25s;
    transform: translate(-50%, -50%);
  }
  
  .point:hover {
    transform: scale(1.5);
    box-shadow: 0 0 18px 6px white;
  }
  
  .content-card {
    position: absolute;
    right: 350px;
    top: 140px;
    color: #000000;
    padding: 20px;
    border-radius: 14px;
    display: none;
    z-index: 11;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 10px 14px 0 #0151a9;
    background: rgba(255, 255, 255, 0.9);
    max-width: 510px;
    max-height: 493px;
  }
  
  .content-card.active {
    display: block;
  }
  
  .content-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.2em;
    margin: 0 0 4px 0;
    font-size: 13px;
    color: #000;
  }
  
  .content-card h2 {
    font-family: 'Inter', sans-serif;
    line-height: 1.3em;
    color: #000000;
    margin: 0 0 16px 0;
    font-weight: 700;
    font-size: 13px;
  }
  
  .content-card p {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 11px;
    color: rgba(0, 0, 0, 0.8);
    margin: 0 0 20px 0;
  }
  
  #nextBtn {
    background: #007AFF;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    float: right;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2em;
    transition: background 0.3s ease;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  #nextBtn:hover {
    background: #0056CC;
  }
  
  .pdf-card {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    right: 80px;
    top: 140px;
    width: 253px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    padding: 33px;
    text-align: center;
    z-index: 10;
    box-shadow: 0px 22.67px 18.89px rgba(1, 81, 169, 0.3);
    font-family: 'Inter', sans-serif;
  }
  
   .pdf-icon {
    width: 66px;
    height: 66px;
    padding-bottom: 10px;
    display: block;
    object-fit: contain;
  }
  
  .pages { 
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2em;
    color: #3D5974;
    margin: 0 0 20px 0;
  }
  
  .pages b {
    font-weight: 700;
  }
  
  .download-btn {
    display: inline-block;
    background: #007AFF;
    color: #FFFFFF;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2em;
    transition: background 0.3s ease;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .download-btn:hover {
    background: #0056CC;
  }
  
  @media (max-width: 1440px) {
    .strategy {
      padding: 60px 120px;
    }

    .path-wrapper > div:nth-child(1){
        top: 307px!important;
    }
    .path-wrapper > div:nth-child(2){
        top: 175px!important;
    }
    .path-wrapper > div:nth-child(3){
        top: 46px!important;
    }
    .path-wrapper > div:nth-child(4){
        top: 46px!important;
    }
    .path-wrapper > div:nth-child(5){
        top: 113px!important;
    }
    
    .content-card {
      right: 200px;
      max-width: 450px;
    }
    
    .pdf-card {
      right: 40px;
      width: 220px;
      padding: 28px;
    }
  }
  
  @media (max-width: 1024px) {
    .strategy {
      padding: 50px 60px;
    }
    

    .path-wrapper > div:nth-child(1){
        top: 388px!important;
    }
    .path-wrapper > div:nth-child(2){
        top:365px!important;
    }
    .path-wrapper > div:nth-child(3){
        top: 202px!important;
    }
    .path-wrapper > div:nth-child(4){
        top: 115px!important;
    }
    .path-wrapper > div:nth-child(5){
        top: 146px!important;
    }

    .left-text h1 {
      font-size: 28px;
    }
    
    .left-text .sub {
      font-size: 13px;
    }
    
    .path-wrapper {
      margin-top: 60px;
      height: 250px;
    }
    
    .content-card {
        right: 239px;
    }
    
    .pdf-card {
      margin-top: 30px;
    }
    
    .point {
      width: 16px;
      height: 16px;
    }
  }
  
  @media (max-width: 768px) {
    .strategy {
      padding: 40px 30px;
    }
    
    .left-text {
      max-width: 100%;
    }
    
    .left-text h1 {
      font-size: 24px;
      margin-bottom: 8px;
    }
    
    .left-text .sub {
      font-size: 12px;
      max-width: 100%;
    }
    
    .path-wrapper {
      margin-top: 40px;
      height: 200px;
    }
    
    .point {
      width: 14px;
      height: 14px;
    }
    
    .content-card {
      padding: 16px;
      margin-top: 20px;
    }
    
    .content-card h3 {
      font-size: 12px;
    }
    
    .content-card h2 {
      font-size: 12px;
      margin-bottom: 12px;
    }
    
    .content-card p {
      font-size: 10px;
      margin-bottom: 16px;
    }
    
    #nextBtn {
      padding: 8px 16px;
      font-size: 12px;
    }
    
    .pdf-card {
      padding: 24px;
      margin-top: 20px;
      width: 180px;
    }


    .path-wrapper > div:nth-child(1){
        top: 455px!important;
    }
    .path-wrapper > div:nth-child(2){
        top:471px!important;
        left: 116px!important;
    }
    .path-wrapper > div:nth-child(3){
        top: 433px!important;
        left: 218.6px!important;
    }
    .path-wrapper > div:nth-child(4){
        top: 335.8px!important;
        left: 276.8px!important;
    }
    .path-wrapper > div:nth-child(5){
        left: 340.6px!important;
        top: 256px!important
    }

    
    .pdf-icon {
      width: 50px;
      height: 50px;
    }
    
    .pages {
      font-size: 12px;
      margin: 0 0 16px 0;
    }
    
    .download-btn {
      padding: 12px 18px;
      font-size: 12px;
    }
  }
  
  @media (max-width: 650px) {
    .strategy {
      padding: 30px 20px;
      min-height: auto;
    }
    
    .left-text {
      max-width: 100%;
      margin-bottom: 30px;
    }
    
    .left-text h1 {
      font-size: 22px;
      margin-bottom: 8px;
    }
    
    .left-text .sub {
      font-size: 11px;
      max-width: 100%;
    }
    
    .path-wrapper {
      margin-top: 30px;
      height: 180px;
      position: relative;
      overflow: hidden;
    }

    
    
    .point {
      width: 12px;
      height: 12px;
    }
    
    .content-card {
      position: absolute;
      right: auto;
      margin-top: 30px;
      max-height: none;
      padding: 16px;
    }
    
    .content-card h3 {
      font-size: 11px;
    }
    
    .content-card h2 {
      font-size: 11px;
      margin-bottom: 12px;
    }
    
    .content-card p {
      font-size: 10px;
      margin-bottom: 16px;
      line-height: 1.4;
    }
    
    #nextBtn {
      padding: 8px 16px;
      font-size: 11px;
      float: right;
    }
    
    .pdf-card {
      position: relative;
      right: auto;
      top: auto;
      margin-top: 30px;
      width: 100%;
      max-width: 100%;
      padding: 20px;
    }
    
    .pdf-icon {
      width: 45px;
      height: 45px;
    }
    
    .pages {
      font-size: 11px;
      margin: 12px 0 12px 0;
    }
    
    .download-btn {
      padding: 10px 18px;
      font-size: 11px;
      width: 100%;
      text-align: center;
    }
    
    .path-wrapper > div:nth-child(1){
        top:80px!important;
        left: 20px!important;
    }
    .path-wrapper > div:nth-child(2){
        top: 140px!important;
        left: 99px!important;
    }
    .path-wrapper > div:nth-child(3){
        top: 120px!important;
        left: 204px!important;
    }
    .path-wrapper > div:nth-child(4){
        top: 46px!important;
        left: 292px!important;
    }
    .path-wrapper > div:nth-child(5){
        left: 393px!important;
        top: 80px!important;
    }
  }
  
  @media (max-width: 480px) {
    .strategy {
      padding: 30px 20px;
    }
    
    .left-text h1 {
      font-size: 20px;
    }
    
    .left-text .sub {
      font-size: 11px;
    }
    
    .path-wrapper {
      margin-top: 30px;
      height: 150px;
    }
    
    .point {
      width: 12px;
      height: 12px;
    }
    
    .content-card {
      padding: 14px;
      margin-top: 15px;
    }
    
    .content-card h3 {
      font-size: 11px;
    }
    
    .content-card h2 {
      font-size: 11px;
      margin-bottom: 10px;
    }
    
    .content-card p {
      font-size: 9px;
      margin-bottom: 12px;
    }
    
    #nextBtn {
      padding: 6px 14px;
      font-size: 11px;
    }
    
    .pdf-card {
      padding: 20px;
      margin-top: 15px;
      max-width: 100%;
    }
    
    .pdf-icon {
      width: 40px;
      height: 40px;
    }
    
    .pages {
      font-size: 11px;
      margin: 0 0 12px 0;
    }
    
    .download-btn {
      padding: 10px 16px;
      font-size: 11px;
    }
  }