.info-materials__title {
    color: #1B1B1C;
    font-size: 32px;
    font-weight: 500;
    line-height: 36px;
    margin: 0;
}

.info-materials__subtitle {
    color: #414141;
    font-size: 16px;
    line-height: 24px;
}

.info-materials__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 32px 0;
}

.info-materials__tab {
    padding: 14px 16px;
    border: none;
    border-radius: 12px;
    background: #EBEBEB;
    color: #1B1B1C;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    cursor: pointer;
}

.info-materials__tab.is-active {
    background: #D5F4ED;
    color: #004954;
}

.info-materials__tab:focus {
    outline: none;
}

.info-materials__card {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.info-materials__card-content {
    flex: 1;
    padding: 32px;
}

.info-materials__card-title {
    color: #1B1B1C;
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    margin: 0;
}

.info-materials__card-desc,
.info-materials__list-label,
.info-materials__value-desc {
    color: #414141;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.info-materials__card-desc {
    margin: 24px 0 0;
}

.info-materials__list-label {
    margin: 24px 0 0;
}

.info-materials__list {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-materials__list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #414141;
    font-size: 16px;
    line-height: 24px;
}

.info-materials__list-item img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-materials__card-media {
    flex: 0 0 48%;
    min-width: 0;
    align-self: stretch;
    padding: 24px;
}

.info-materials__card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.info-materials__values {
    margin-top: 24px;
}

.info-materials__values-title {
    color: #1B1B1C;
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
}

.info-materials__value-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    gap: 16px;
}

.info-materials__value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #E5F7F3;
    margin-bottom: 16px;
}

.info-materials__value-icon img {
    width: 24px;
    height: 24px;
}

.info-materials__value-title {
    color: #1B1B1C;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin: 0;
}

.info-materials__value-desc {
    margin: 8px 0 0;
}

@media (max-width: 1200px) {
    .info-materials__card-media {
        display: none;
    }
}

@media (max-width: 991px) {
    .info-materials__title {
        font-size: 24px;
        line-height: 30px;
    }
}

.info-features__title {
    color: #1B1B1C;
    font-size: 32px;
    font-weight: 500;
    line-height: 36px;
    margin: 0;
}

.info-features__subtitle {
    color: #414141;
    font-size: 16px;
    line-height: 24px;
    margin-top: 16px;
}

.info-features__head {
    margin-bottom: 32px;
}

.info-features__card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
}

.info-features__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #E5F7F3;
    flex-shrink: 0;
}

.info-features__icon img {
    width: 24px;
    height: 24px;
}

.info-features--policy .info-features__icon {
    background: #E8F2FF;
}

.info-features__card-body {
    min-width: 0;
}

.info-features__card-title {
    color: #1B1B1C;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin: 0;
}

.info-features__card-desc {
    color: #414141;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin: 4px 0 0;
}

@media (max-width: 991px) {
    .info-features__title {
        font-size: 24px;
        line-height: 30px;
    }
}

.info-stats__title {
    color: #1B1B1C;
    font-size: 32px;
    font-weight: 500;
    line-height: 36px;
    margin: 0 0 24px;
}

.info-stats__card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    min-height: 220px;
    overflow: hidden;
}

.info-stats__card::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 6px;
    background: linear-gradient(to right, #AADCE3 var(--stripe-light, 50%), #4A95A2 var(--stripe-light, 50%));
}

.info-stats__card--stripe-50 {
    --stripe-light: 50%;
}

.info-stats__card--stripe-60 {
    --stripe-light: 60%;
}

.info-stats__card--stripe-20 {
    --stripe-light: 20%;
}

.info-stats__value {
    margin: 0;
    color: #AADCE3;
    font-size: 56px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
}

.info-stats__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.info-stats__icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.info-stats__desc {
    color: #1B1B1C;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
}

@media (max-width: 991px) {
    .info-stats__title {
        font-size: 24px;
        line-height: 30px;
    }

    .info-stats__value {
        font-size: 40px;
    }
}

.row.row-gutter-16 {
    margin-left: -8px;
    margin-right: -8px;
}

.row.row-gutter-16 > [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
}

.info-legal {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    overflow: hidden;
    margin-bottom: 60px;
}

.info-legal__content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.info-legal__content a {
    color: #035d66;
    text-decoration: none;
}

.info-legal__content a:hover {
    text-decoration: underline;
}

.info-legal__decor {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: auto;
    max-width: 55%;
    object-fit: cover;
    object-position: right center;
    pointer-events: none;
}

.info-legal__text {
    color: #1B1B1C;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

@media (max-width: 991px) {
    .info-legal__content {
        max-width: none;
    }

    .info-legal__decor {
        opacity: 0.35;
        max-width: 70%;
    }
}
