@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@400;500;600;700;800&display=swap');

/* About Us Page Styles - Baltic Council */

.about-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #073248;
    background-color: #F6F9FC;
}

.about-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
}

/* Common Section Titles */
.about-section-title {
    font-family: 'Geologica', sans-serif;
    font-weight: 800;
    font-size: 70px;
    line-height: 61px;
    letter-spacing: -0.92px;
    text-align: center;
    color: #073248;
    margin-top: 0;
    margin-bottom: 20px;
}

.about-section-desc {
    font-family: 'Geologica', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: -0.5px;
    text-align: center;
    color: #38596A;
    max-width: 930px;
    margin: 0 auto 60px auto;
}

/* 1. Hero Section */
.about-hero {
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 92px 0 100px 0;
    position: relative;
}

.about-hero__inner {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.about-hero__content {
    max-width: 1000px;
}

.about-hero__title {
    font-family: 'Geologica', sans-serif;
    font-weight: 600;
    font-size: 70px;
    line-height: 65px;
    letter-spacing: -3.22px;
    color: #FFFFFF;
    margin-top: 0;
    margin-bottom: 19px;
}

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

.about-hero__bullets li {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 29.8px;
    letter-spacing: -0.29px;
    color: #FFFFFF;
    margin-bottom: 6px;
    position: relative;
    padding-left: 20px;
    opacity: 0.95;
}

.about-hero__bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffffff;
    font-weight: bold;
}

/* Hero Inline Form */
.about-hero__form-card {
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    max-width: 1280px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.about-form__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) 257px;
    gap: 10px;
    align-items: center;
    justify-content: stretch;
}

.about-form__field--submit {
    margin-left: 10px;
}

.about-hero__form-card input.about-form__input {
    width: 100%;
    height: 46px;
    background: #E5EFF6;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 0 16px;
    font-size: 15px;
    color: #073248;
    box-sizing: border-box;
    outline: none;
    transition: all 0.3s ease;
}

.about-hero__form-card input.about-form__input::placeholder {
    color: #7A8E9A;
}

.about-hero__form-card input.about-form__input:focus {
    background: #ffffff;
    border-color: #3B82F6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.about-form__submit {
    width: 257px;
    height: 48px;
    background: #E2231A;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 0;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-form__submit:hover {
    background: #c11810;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(226, 35, 26, 0.3);
}

.about-form__consents {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 20px;
    max-width: 1280px;
    width: 100%;
}

.about-form__consent-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-form__consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 0;
}

.about-form__consent input[type="checkbox"] {
    display: none;
}

.about-form__checkbox-box {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    display: inline-block;
    flex-shrink: 0;
    position: relative;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.about-form__consent input[type="checkbox"]:checked + .about-form__checkbox-box {
    background: #0084FF;
    border-color: #0084FF;
}

.about-form__consent input[type="checkbox"]:checked + .about-form__checkbox-box::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 3px;
    width: 5px;
    height: 9px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.about-form__consent-text {
    font-family: 'Geologica', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: -0.6px;
    color: #FFFFFF;
}

.about-form__consent-text p {
    margin: 0;
    padding: 0;
    display: inline;
}

.about-form__link {
    font-family: 'Geologica', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: -0.6px;
    color: #FFFFFF;
    opacity: 0.7;
    text-decoration: underline;
}

.about-form__link:hover {
    opacity: 1;
}

/* 2. Our Team Section */
.about-team {
    padding: 80px 0 100px 0;
    background-color: #F6F9FC;
}

.about-team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 40px; /* Отступы между карточками: 30px по вертикали, 40px по горизонтали */
    margin-top: 0;
}

.about-team__card {
    text-align: center;
    background-color: #F6F9FC;
    border-radius: 16px;
    padding: 24px 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-team__card:hover {
    transform: translateY(-8px);
}

.about-team__photo-wrapper {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 10px auto; /* отступ от аватарки до имени: 10px */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.about-team__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-team__card:hover .about-team__photo {
    transform: scale(1.08);
}

.about-team__name {
    font-family: 'Geologica', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 26px;
    letter-spacing: -1.11px;
    text-align: center;
    vertical-align: middle;
    color: #073248;
    margin: 0 0 6px 0;
}

.about-team__role {
    font-family: 'Geologica', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 23px;
    letter-spacing: -0.17px;
    text-align: center;
    color: #38596A;
    margin: 0 0 10px 0;
}

.about-team__location {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: 'Geologica', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 23px;
    letter-spacing: -0.17px;
    color: #0083DA;
}

.about-team__location svg {
    flex-shrink: 0;
}

.about-team__location svg path {
    fill: currentColor;
}

/* 3. Students Study Section */
.about-students {
    position: relative;
    height: 418px; /* высота картинки: 418px */
    box-sizing: border-box;
    padding: 64px 0 0 0; /* Отступ хедера от картинки: 64px */
    background-image: url('/images/about/hero_bg.png');
    background-size: cover;
    background-position: center;
}

@media (max-width: 1023px) {
    .about-students {
        height: auto;
        padding: 60px 0;
    }
}

.about-students__header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px; /* Отступ от хедера до списка: 48px */
    align-items: start;
    margin-bottom: 52px; /* Отступ до карточек: 52px */
}

.about-students__title {
    font-family: 'Geologica', sans-serif;
    font-weight: 800;
    font-size: 70px;
    line-height: 61px;
    letter-spacing: -0.92px;
    vertical-align: middle;
    color: #073248;
    margin: 0;
    max-width: 618px; /* Max-width хедера: 618px */
}

.about-students__bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column; /* Список должен идти в 1 колонку */
    gap: 8px;
}

.about-students__bullets li {
    font-family: 'Geologica', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 40px; /* line-height: 40px */
    letter-spacing: -1.03px;
    color: #38596A;
    position: relative;
    padding-left: 20px;
}

.about-students__bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #073248;
    font-size: 20px;
    line-height: 40px; /* align bullet vertically with text line-height */
    top: 0;
}

/* University Logos Swiper Customizations */
.about-students__carousel {
    width: 100%;
    position: relative;
}

.about-students__carousel .brands-marquee-wrap {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding-top: 15px;
    padding-bottom: 45px;
    margin-top: -15px;
    margin-bottom: -45px;
}

.about-students__carousel .brands-marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 35s linear infinite;
}

.about-students__carousel .brands-marquee-wrap:hover .brands-marquee-track {
    animation-play-state: paused;
}

.about-students__carousel .partner-item {
    width: 226px;
    height: 84px;
    background-color: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    margin-right: 38px;
    flex-shrink: 0;
}

.about-students__carousel .partner-item:hover {
    border-color: #CBD5E0;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 1023px) {
    .about-students__carousel .partner-item {
        margin-right: 24px;
    }
}

@media (max-width: 767px) {
    .about-students__carousel .partner-item {
        width: 160px;
        height: 60px;
        margin-right: 16px;
    }
}

.about-cooperation {
    padding: 80px 0 120px 0;
    background-color: #F6F9FC;
}

.about-cooperation .about-section-title {
    max-width: 669px;
    margin-left: auto;
    margin-right: auto;
    line-height: 80px;
}

.about-cooperation .about-section-desc {
    margin-bottom: 60px; /* 85px visual gap to the highest staggered card (Col 2 translateY(25px)) */
}

.about-steps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 83px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.about-steps__col {
    display: flex;
    flex-direction: column;
    gap: 106px; /* spacing between top and bottom cards */
    transition: transform 0.3s ease;
}

/* Staggered Column Offsets on Desktop */
@media (min-width: 1024px) {
    .about-steps__grid {
        background: url('/images/about/lines_work.png') no-repeat center center;
        background-size: 100% 100%;
        height: 674px;
        max-width: 1280px;
    }
    .about-steps__col--1 {
        transform: translateY(25px);
    }
    .about-steps__col--2 {
        transform: translateY(65px);
    }
    .about-steps__col--3 {
        transform: translateY(25px);
    }
    .about-steps__col--4 {
        transform: translateY(65px);
    }
    .about-step-card {
        width: 257px;
        height: 234px;
    }
}

.about-step-card {
    background: #ffffff;
    border: 1px solid rgba(241, 245, 249, 0.8);
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 10px 10px 30px 0px #D1D9EB;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
}

.about-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 12px 12px 36px 0px #C3CEDF;
    border-color: rgba(203, 213, 224, 0.5);
}

.about-step-card__icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-step-card__title {
    font-family: 'Geologica', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.92px;
    color: #073248;
    margin: 0;
}

.about-step-card__svg {
    width: 50px;
    height: 50px;
}

/* Themes: Blue and Red */
.about-step-card--blue .about-step-card__svg {
    color: #1E3A8A;
}

.about-step-card--red .about-step-card__svg {
    color: #EF4444;
}

/* Desktop Only Connectors & Colors */
@media (min-width: 1024px) {
    /* Wavy Connectors container */
    .about-steps__wave-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 680px;
        pointer-events: none;
        z-index: 1;
        display: block;
    }
    
    .about-steps__wave {
        width: 100%;
        height: 100%;
        display: block;
    }
}

@media (max-width: 1023px) {
    .about-steps__wave-container {
        display: none;
    }
    .about-step-card {
        transform: none !important;
        max-width: 100%;
    }
}

.about-faq {
    padding: 0;
    background-color: #F6F9FC;
    position: relative;
}

.about-faq__banner {
    height: 478px; /* Картинка высотой 478px */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 80px; /* Отступ от верха картинки до хедера: 80px */
    box-sizing: border-box;
}

.about-faq__title {
    font-family: 'Geologica', sans-serif;
    font-weight: 800;
    font-size: 70px;
    line-height: 61px;
    letter-spacing: -0.92px;
    text-align: center;
    color: #073248;
    margin: 0;
}

.about-faq__list {
    width: 100%;
    margin: -257px auto 120px auto; /* 80px top offset + 61px title + 80px gap = 221px card start. 478px - 221px = 257px negative margin. 120px margin-bottom. */
    position: relative;
    z-index: 5;
}

.about-faq__item {
    background: #FAFCFD;
    border: none;
    border-radius: 20px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 10px 10px 30px 0px #D1D9EB;
    transition: all 0.3s ease;
}

.about-faq__item:hover {
    box-shadow: 10px 15px 35px 0px #C3CEDF;
}

.about-faq__question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 16px 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    outline: none !important;
}

.about-faq__question:focus,
.about-faq__question:active,
.about-faq__question:focus-visible {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.about-faq__icon {
    width: 32px;
    height: 32px;
    background-color: #EF6860;
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Geologica', sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin-right: 30px; /* Отступ от вопроса к хедеру: 30px */
    flex-shrink: 0;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.about-faq__question-text {
    font-family: 'Geologica', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 30px;
    letter-spacing: -1.2px;
    color: #073248;
    text-align: left;
    flex-grow: 1;
    transition: color 0.3s ease;
}

/* Hover effects */
.about-faq__item:hover .about-faq__question-text {
    color: #EF6860;
}

.about-faq__item:hover .about-faq__icon {
    transform: scale(1.08);
}

.about-faq__item:hover .about-faq__arrow path {
    stroke: #EF6860;
}

.about-faq__arrow {
    flex-shrink: 0;
    margin-left: 20px;
    transition: transform 0.3s ease;
}

.about-faq__arrow path {
    stroke: #073248;
    transition: stroke 0.3s ease;
}

.about-faq__answer {
    display: none;
    padding: 20px 30px 86px 92px; /* Отступ от хедера к описанию: 20px, Отступ от описания вниз: 86px, 92px alignment */
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: -0.73px;
    color: #313131;
    max-width: 888px; /* max-width у описания 888px */
    box-sizing: content-box; /* Ensures content width itself is exactly 888px (excluding paddings) */
}

/* Active FAQ Item State */
.about-faq__item.is-active {
    /* No border on active */
}

.about-faq__item.is-active .about-faq__question-text {
    color: #EF6860;
}

.about-faq__item.is-active .about-faq__arrow {
    transform: rotate(180deg);
}

.about-faq__item.is-active .about-faq__arrow path {
    stroke: #EF6860;
}


/* -----------------------------------------
   RESPONSIVENESS (BREAKPOINTS)
----------------------------------------- */

/* Breakpoint: 1440px (Desktop Full) */
@media (max-width: 1440px) {
    .about-hero__title {
        font-size: 60px;
        line-height: 58px;
        letter-spacing: -2.5px;
    }
}

/* Breakpoint: 1024px (Laptops / Tablets landscape) */
@media (max-width: 1024px) {
    .about-container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .about-section-title {
        font-size: 48px;
        line-height: 52px;
        margin-bottom: 24px;
    }
    
    .about-section-desc {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 40px;
    }

    .about-students__title {
        font-size: 42px;
        line-height: 44px;
        max-width: none;
    }
    
    .about-students__bullets li {
        font-size: 16px;
        line-height: 32px;
    }
    
    .about-students__bullets li::before {
        line-height: 32px;
    }

    .about-hero__title {
        font-size: 40px;
    }
    
    .about-form__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .about-form__field--submit {
        grid-column: span 2;
        margin-left: 0;
    }
    
    .about-hero__form-card input.about-form__input {
        width: 100%;
        height: 46px;
    }

    .about-form__submit {
        width: 100%;
        height: 48px;
    }

    .about-form__consents {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: none;
    }
    
    .about-team__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    /* Steps Grid wrap into 2 columns */
    .about-steps__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .about-steps__col {
        gap: 32px;
        transform: none !important;
    }

    .about-cooperation .about-section-desc {
        margin-bottom: 80px; /* 80px gap on tablet since there's no translateY shift */
    }

    .about-faq {
        padding: 0;
    }

    .about-faq__banner {
        height: 528px;
        padding: 64px 0 0 0;
    }

    .about-faq__title {
        font-size: 40px;
        line-height: 1.2;
    }

    .about-faq__list {
        margin: -381px auto 60px auto;
    }

    .about-faq__question {
        padding: 16px 24px;
    }

    .about-faq__icon {
        margin-right: 20px;
    }

    .about-faq__question-text {
        font-size: 20px;
        line-height: 24px;
        letter-spacing: -0.5px;
    }

    .about-faq__answer {
        padding: 16px 24px 86px 76px; /* 16px top gap, 86px bottom padding, 76px alignment */
        font-size: 16px;
        line-height: 26px;
    }
}

/* Breakpoint: 768px (Tablets portrait) */
@media (max-width: 768px) {
    .about-section-title {
        font-family: 'Geologica', sans-serif;
        font-weight: 800;
        font-size: 42px;
        line-height: 38px;
        letter-spacing: -0.55px;
        text-align: center;
        color: #073248;
        margin-bottom: 40px;
    }
    
    .about-section-desc {
        font-family: 'Geologica', sans-serif;
        font-weight: 500;
        font-size: 18px;
        line-height: 30px;
        letter-spacing: -1.03px;
        text-align: center;
        color: #38596A;
        margin-bottom: 48px;
    }
    
    .about-hero {
        padding: 28px 0 40px 0;
    }
    
    .about-hero__inner {
        gap: 0;
    }
    
    .about-hero__title {
        font-family: 'Geologica', sans-serif;
        font-weight: 600;
        font-size: 36px;
        line-height: 42px;
        letter-spacing: -1.66px;
        color: #FFFFFF;
        margin-bottom: 28px;
    }
    
    .about-hero__bullets {
        margin-bottom: 48px;
    }
    
    .about-hero__bullets li {
        font-family: 'Geologica', sans-serif;
        font-weight: 400;
        font-size: 18px;
        line-height: 24px;
        letter-spacing: -0.24px;
        color: #FFFFFF;
        margin-bottom: 12px;
    }
    
    .about-hero__bullets li:last-child {
        margin-bottom: 0;
    }
    
    .about-form__grid {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .about-form__field {
        width: 100%;
    }
    
    .about-form__field--submit {
        width: 100%;
        margin-left: 0;
    }
    
    .about-form__submit {
        width: 100%;
        height: 48px;
    }
    
    .about-hero__form-card input.about-form__input {
        width: 100%;
        height: 46px;
    }
    
    .about-form__consent-wrapper {
        justify-content: space-between;
        width: 100%;
    }
    
    .about-form__consents {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
    }
    
    .about-team {
        padding: 60px 0;
    }
    
    .about-team__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-team__photo-wrapper {
        width: 220px;
        height: 220px;
        margin: 0 auto 10px auto;
    }
    
    .about-team__name {
        font-family: 'Geologica', sans-serif;
        font-weight: 700;
        font-size: 24px;
        line-height: 26px;
        letter-spacing: -1.11px;
        text-align: center;
        color: #073248;
        margin: 0 0 6px 0;
    }

    .about-team__role {
        font-family: 'Geologica', sans-serif;
        font-weight: 500;
        font-size: 14px;
        line-height: 23px;
        letter-spacing: -0.17px;
        text-align: center;
        color: #38596A;
        margin: 0 0 6px 0;
    }

    .about-team__location {
        font-family: 'Geologica', sans-serif;
        font-weight: 500;
        font-size: 14px;
        line-height: 23px;
        letter-spacing: -0.17px;
        color: #0083DA;
    }
    
    .about-students {
        padding: 60px 0 80px 0;
    }
    
    .about-students__header {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .about-students__title {
        font-family: 'Geologica', sans-serif;
        font-weight: 800;
        font-size: 42px;
        line-height: 38px;
        letter-spacing: -0.55px;
        color: #073248;
        max-width: none;
    }
    
    .about-students__bullets {
        gap: 8px;
    }
    
    .about-students__bullets li {
        font-family: 'Geologica', sans-serif;
        font-weight: 500;
        font-size: 16px;
        line-height: 30px;
        letter-spacing: -0.44px;
        color: #38596A;
    }
    
    .about-students__bullets li::before {
        line-height: 30px;
    }
    
    .about-cooperation {
        padding: 60px 0 50px 0;
    }
    
    .about-cooperation .about-section-title {
        font-family: 'Geologica', sans-serif;
        font-weight: 800;
        font-size: 42px;
        line-height: 44px;
        letter-spacing: -0.55px;
        text-align: center;
        color: #073248;
        margin-bottom: 21px;
    }
    
    .about-cooperation .about-section-desc {
        font-family: 'Geologica', sans-serif;
        font-weight: 500;
        font-size: 18px;
        line-height: 24px;
        letter-spacing: -1.03px;
        text-align: center;
        color: #38596A;
        margin-bottom: 40px;
    }
    
    .about-steps__grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        background: url('/images/about/lines_work_mobile.png') no-repeat center 88px;
        background-size: 330px calc(100% - 176px);
    }
    
    .about-steps__col {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .about-step-card {
        width: 257px;
        height: 214px;
        background: #F8FAFD;
        box-shadow: 10px 10px 30px 0px #D1D9EB;
        border: none;
        padding: 28px 24px;
        gap: 20px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        margin: 0 auto;
        transform: none !important;
        max-width: 100%;
    }
    
    .about-step-card:hover {
        transform: none !important;
        box-shadow: 10px 10px 30px 0px #D1D9EB !important;
    }
    
    .about-step-card__title {
        font-family: 'Geologica', sans-serif;
        font-weight: 600;
        font-size: 20px;
        line-height: 30px;
        letter-spacing: -0.92px;
        color: #073248;
        margin: 0;
    }
    
    .about-step-card__icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .about-faq {
        padding: 0;
    }

    .about-faq__title {
        font-family: 'Geologica', sans-serif;
        font-weight: 800;
        font-size: 42px;
        line-height: 38px;
        letter-spacing: -0.55px;
        text-align: center;
        color: #073248;
    }

    .about-faq__list {
        margin: -381px auto 80px auto;
    }
    
    .about-faq__item {
        box-shadow: 7px 7px 21px 0px #D1D9EB;
        background: #FAFCFD;
        border-radius: 19px;
        margin-bottom: 16px;
    }
    
    .about-faq__item:last-child {
        margin-bottom: 0;
    }
    
    .about-faq__question {
        padding: 28px 17px;
    }

    .about-faq__icon {
        width: 24px;
        height: 24px;
        font-size: 12px;
        line-height: 24px;
        margin-right: 16px;
    }

    .about-faq__question-text {
        font-family: 'Geologica', sans-serif;
        font-weight: 700;
        font-size: 18px;
        line-height: 21px;
        letter-spacing: -0.83px;
        color: #073248;
        max-width: 225px;
        text-align: left;
    }

    .about-faq__answer {
        padding: 0 17px 28px 57px; /* 17px right, 28px bottom, 57px left alignment (17px padding + 24px icon + 16px margin) */
        font-size: 14px;
        line-height: 22px;
    }
}

/* Breakpoint: 375px (Mobile) */
@media (max-width: 480px) {
    .about-container {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .about-hero__form-card {
        padding: 16px;
    }
    
    .about-team__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* Footer override to remove extra top margin on the About Us page */
footer {
    margin-top: 0 !important;
}
