/* SI: БЭМ-стили информационных страниц приюта «Второй шанс» */

.page .page-head {
    padding: 28px 0 28px;
}

.page .page-head__title {
    font-size: clamp(1.6rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.page .page-head__text {
    max-width: 720px;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.page .page-head__breadcrumb {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--page-glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--page-glass-border);
    border-radius: 100px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.page .page-head__breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--page-text-muted);
    text-decoration: none;
    transition: var(--page-transition);
}

.page .page-head__breadcrumb-link:hover,
.page .page-head__breadcrumb-link:visited {
    color: #fff;
}

.page .page-head__breadcrumb-sep {
    font-size: 0.65rem;
    color: var(--page-text-muted);
    opacity: 0.5;
}

.page .page-head__breadcrumb-current {
    color: #fff;
    font-weight: 700;
}

.page .info-main {
    padding: 32px 0 100px;
}

.page .info-block {
    margin-bottom: 60px;
}

.page .info-block__title {
    font-weight: 800;
    font-size: 1.75rem;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.page .info-block__title-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(124, 77, 255, 0.25);
    border: 1px solid var(--page-glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.page .info-card {
    background: var(--page-glass-bg);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--page-glass-border);
    border-radius: var(--page-radius-md);
    padding: 28px;
    height: 100%;
    transition: var(--page-transition);
}

.page .info-card:hover {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.25);
}

.page .info-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.page .info-card__icon--purple { background: rgba(124, 77, 255, 0.3); }
.page .info-card__icon--pink { background: rgba(255, 64, 129, 0.3); }
.page .info-card__icon--teal { background: rgba(0, 150, 136, 0.3); }
.page .info-card__icon--blue { background: rgba(33, 150, 243, 0.3); }
.page .info-card__icon--orange { background: rgba(255, 152, 0, 0.3); }
.page .info-card__icon--red { background: rgba(244, 67, 54, 0.3); }

.page .info-card__title {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.page .info-card__text {
    color: var(--page-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.page .info-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page .info-card__list-item {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: var(--page-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.page .info-card__list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--page-color-primary);
}

.page .info-card__list-item:last-child {
    margin-bottom: 0;
}

.page .info-card__list-item strong {
    color: var(--page-text-main);
}

/* Alert / стоп-лист */
.page .info-alert {
    border-radius: var(--page-radius-md);
    padding: 28px 32px;
    border: 1px solid;
    margin-bottom: 24px;
}

.page .info-alert--danger {
    background: rgba(244, 67, 54, 0.12);
    border-color: rgba(244, 67, 54, 0.4);
}

.page .info-alert--warning {
    background: rgba(255, 152, 0, 0.12);
    border-color: rgba(255, 152, 0, 0.4);
}

.page .info-alert--success {
    background: rgba(76, 175, 80, 0.12);
    border-color: rgba(76, 175, 80, 0.4);
}

.page .info-alert__header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.page .info-alert__icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    line-height: 1;
}

.page .info-alert--danger .info-alert__icon { color: #ff5252; }
.page .info-alert--warning .info-alert__icon { color: #ffb74d; }
.page .info-alert--success .info-alert__icon { color: #81c784; }

.page .info-alert__title {
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.page .info-alert__text {
    color: var(--page-text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.page .info-alert__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.page .info-alert__tag {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.35);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Контактная карточка */
.page .info-contact {
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.2), rgba(255, 64, 129, 0.15));
    border: 1px solid var(--page-glass-border);
    border-radius: var(--page-radius-xl);
    padding: 40px;
    text-align: center;
}

.page .info-contact__label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--page-text-muted);
    margin-bottom: 12px;
}

.page .info-contact__phone {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--page-transition);
}

.page .info-contact__phone:hover {
    color: var(--page-color-primary);
}

.page .info-contact__person {
    margin-top: 10px;
    color: var(--page-text-muted);
    font-size: 1rem;
}

/* Пункты сбора */
.page .collection-point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.page .collection-point__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 150, 136, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.page .collection-point__district {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #4db6ac;
    font-weight: 700;
    margin-bottom: 4px;
}

.page .collection-point__address {
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Donate: реквизиты */
.page .donate-widget {
    background: var(--page-glass-bg);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--page-glass-border);
    border-radius: var(--page-radius-md);
    padding: 28px;
    margin-bottom: 20px;
}

.page .donate-widget__label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--page-text-muted);
    margin-bottom: 8px;
}

.page .donate-widget__value {
    font-family: 'Montserrat', monospace;
    font-size: 1.25rem;
    font-weight: 700;
    word-break: break-all;
    margin-bottom: 16px;
}

.page .donate-widget__value--small {
    font-size: 1rem;
}

.page .donate-widget__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.page .btn--copy {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--page-glass-border);
    color: #fff;
    border-radius: 100px;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--page-transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.page .btn--copy:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.page .btn--copy--success {
    background: rgba(76, 175, 80, 0.3);
    border-color: rgba(76, 175, 80, 0.5);
}

.page .donate-qr {
    padding: 24px;
}

.page .donate-qr__poster {
    display: block;
    width: 100%;
    max-width: 520px;
    margin: 0 auto 20px;
    border-radius: 16px;
    background: #fff;
}

.page .donate-qr__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.page .donate-qr__id {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.page .donate-qr__steps {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    max-width: 400px;
    margin-inline: auto;
}

.page .donate-qr__step {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
    color: var(--page-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.page .donate-qr__step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(90deg, #7C4DFF, #FF4081);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    flex-shrink: 0;
    color: #fff;
}

/* Accordion для юридической информации */
.page .info-accordion .accordion-item {
    background: var(--page-glass-bg);
    border: 1px solid var(--page-glass-border);
    border-radius: var(--page-radius-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.page .info-accordion .accordion-button {
    background: transparent;
    color: #fff;
    font-weight: 700;
    box-shadow: none;
    padding: 20px 24px;
}

.page .info-accordion .accordion-button:not(.collapsed) {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.page .info-accordion .accordion-button::after {
    filter: invert(1);
}

.page .info-accordion .accordion-body {
    color: var(--page-text-muted);
    line-height: 1.8;
    padding: 0 24px 24px;
}

.page .info-accordion .accordion-body strong {
    color: var(--page-text-main);
}

.page .info-accordion .accordion-body dl {
    margin-bottom: 0;
}

.page .info-accordion .accordion-body dt {
    font-weight: 700;
    color: var(--page-text-main);
    margin-top: 12px;
}

.page .info-accordion .accordion-body dt:first-child {
    margin-top: 0;
}

.page .info-accordion .accordion-body dd {
    margin-left: 0;
    margin-bottom: 0;
}

/* Ссылки: категории */
.page .links-category {
    margin-bottom: 50px;
}

.page .links-category__title {
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--page-glass-border);
}

.page .link-card {
    background: var(--page-glass-bg);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--page-glass-border);
    border-radius: var(--page-radius-md);
    padding: 22px 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    transition: var(--page-transition);
}

.page .link-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
    color: #fff;
}

.page .link-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.page .link-card__icon--vk { background: rgba(76, 117, 163, 0.35); color: #6d9fd8; }
.page .link-card__icon--phone { background: rgba(76, 175, 80, 0.3); color: #81c784; }
.page .link-card__icon--location { background: rgba(255, 152, 0, 0.3); color: #ffb74d; }
.page .link-card__icon--community { background: rgba(124, 77, 255, 0.3); color: #b388ff; }
.page .link-card__icon--shelter { background: rgba(255, 64, 129, 0.3); color: #ff80ab; }
.page .link-card__icon--search { background: rgba(0, 150, 136, 0.3); color: #4db6ac; }
.page .link-card__icon--max { background: rgba(33, 150, 243, 0.3); color: #64b5f6; }

.page .link-card__content {
    flex-grow: 1;
    min-width: 0;
}

.page .link-card__name {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2px;
}

.page .link-card__url {
    font-size: 0.8rem;
    color: var(--page-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.page .link-card--static {
    cursor: default;
}

.page .link-card--static:hover {
    transform: none;
}

.page .phones-grid__item {
    font-size: 0.95rem;
    color: var(--page-text-muted);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page .phones-grid__item:last-child {
    border-bottom: none;
}

.page .phones-grid__district {
    font-weight: 700;
    color: var(--page-text-main);
}

.page .phones-grid__numbers {
    margin-top: 4px;
}

.page .phones-grid__numbers a {
    color: #81c784;
    text-decoration: none;
}

.page .phones-grid__numbers a:hover {
    text-decoration: underline;
}

/* Навигация dropdown */
.page .navbar .dropdown-menu {
    background: rgba(26, 18, 37, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--page-glass-border);
    border-radius: var(--page-radius-md);
    padding: 8px;
    margin-top: 8px;
}

.page .navbar .dropdown-item {
    color: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    padding: 10px 16px;
    font-weight: 600;
    transition: var(--page-transition);
}

.page .navbar .dropdown-item:hover,
.page .navbar .dropdown-item:focus,
.page .navbar .dropdown-item.active {
    background: rgba(124, 77, 255, 0.25);
    color: #fff;
}

.page .navbar .dropdown-toggle::after {
    margin-left: 6px;
}

/* Toast уведомление копирования */
.page .copy-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(76, 175, 80, 0.95);
    color: #fff;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.page .copy-toast--visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.page .footer__grid {
    max-width: 100%;
}

.page .footer__brand {
    text-align: center;
}

.page .footer__logo {
    margin-bottom: 20px;
}

.page .footer__title {
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 24px;
    line-height: 1.4;
    color: #fff;
}

.page .footer__social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.page .footer__social-link {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--page-glass-bg);
    border: 1px solid var(--page-glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    text-decoration: none;
    transition: var(--page-transition);
}

.page .footer__social-link:hover,
.page .footer__social-link:visited {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-3px);
}

.page .footer__copyright {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.page .footer__aside {
    display: flex;
}

.page .footer__nav {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--page-glass-bg);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--page-glass-border);
    border-radius: var(--page-radius-md);
    padding: 28px 32px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.page .footer__nav-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--page-text-muted);
    margin-bottom: 16px;
}

.page .footer__links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.page .footer__links-item {
    margin: 0;
}

.page .footer__links-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--page-transition);
}

.page .footer__links-link:visited {
    color: rgba(255, 255, 255, 0.85);
}

.page .footer__links-link i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--page-color-primary);
    transition: var(--page-transition);
}

.page .footer__links-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.page .footer__links-link:hover i {
    color: #fff;
}

@media (min-width: 992px) {
    .page .footer__brand {
        text-align: left;
    }

    .page .footer__social {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .page .footer__nav {
        max-width: 100%;
    }
}

/* About: таймлайн */
.page .about-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.page .about-timeline__item {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 24px;
    align-items: start;
}

.page .about-timeline__marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: 28px;
}

.page .about-timeline__label {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--page-color-primary);
    white-space: nowrap;
}

.page .about-timeline__dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #7C4DFF;
    border: 3px solid rgba(26, 18, 37, 0.95);
    box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.35);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.page .about-timeline__dot--accent {
    background: #FF4081;
    box-shadow: 0 0 0 3px rgba(255, 64, 129, 0.35);
}

.page .about-timeline__content {
    margin-left: 0;
}

.page .about-principle {
    text-align: center;
}

.page .about-principle__icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.page .about-principle__icon--shield { background: rgba(33, 150, 243, 0.25); color: #64b5f6; }
.page .about-principle__icon--heart { background: rgba(255, 64, 129, 0.25); color: #ff80ab; }
.page .about-principle__icon--scales { background: rgba(124, 77, 255, 0.25); color: #b388ff; }

.page .btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* Requisites */
.page .requisites-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.page .requisites-grid__card--wide {
    grid-column: 1 / -1;
}

.page .requisites-grid__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--page-text-muted);
    margin-bottom: 8px;
}

.page .requisites-grid__value {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 0;
    color: var(--page-text-main);
}

.page .requisites-grid__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 100px;
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.35);
    color: #81c784;
    font-size: 0.85rem;
    font-weight: 600;
}

.page .requisites-copy-all {
    text-align: center;
}

.page .btn--copy-all {
    gap: 10px;
}

.page .requisites-verify {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.page .requisites-verify__icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #81c784;
    flex-shrink: 0;
}

.page .requisites-verify__content {
    flex-grow: 1;
    min-width: 0;
}

/* Contacts */
.page .contact-phone {
    text-align: center;
    position: relative;
}

.page .contact-phone__label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--page-text-muted);
    margin-bottom: 12px;
    line-height: 1.4;
}

.page .contact-phone__number {
    display: block;
    font-size: clamp(1.25rem, 3vw, 1.6rem);
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    transition: var(--page-transition);
    margin-bottom: 16px;
}

.page .contact-phone__number:hover,
.page .contact-phone__number:visited {
    color: var(--page-color-primary);
}

.page .contact-phone__copy {
    margin: 0 auto;
}

.page .team-card {
    text-align: center;
}

.page .team-card__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.3), rgba(255, 64, 129, 0.3));
    border: 1px solid var(--page-glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 16px;
    color: #fff;
}

.page .team-card__name {
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.page .team-card__role {
    font-size: 0.85rem;
    color: var(--page-text-muted);
    margin-bottom: 16px;
}

.page .team-card__action {
    width: 100%;
    justify-content: center;
}

.page .location-card__header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.page .location-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 152, 0, 0.25);
    color: #ffb74d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.page .location-card__title {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.page .location-card__district {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #4db6ac;
    margin-bottom: 0;
}

.page .location-card__address {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--page-text-muted);
    margin-bottom: 16px;
}

.page .location-card__map {
    display: inline-flex;
}

@media (max-width: 767px) {
    .page .info-block__title {
        font-size: 1.4rem;
    }

    .page .info-contact {
        padding: 28px 20px;
    }

    .page .collection-point {
        flex-direction: column;
        gap: 12px;
    }

    .page .requisites-grid {
        grid-template-columns: 1fr;
    }

    .page .requisites-verify {
        flex-direction: column;
    }

    .page .about-timeline__item {
        grid-template-columns: 72px 1fr;
        gap: 16px;
    }

    .page .about-timeline__label {
        font-size: 0.62rem;
    }
}
