.info-page {
    padding-top: 80px;
    padding-bottom: 80px;
}

.info-block {
    max-width: 800px;
    border-radius: 24px;
    background: #fff;
    padding: 48px;
    text-align: center;
    margin: 0 auto;
}

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

.info-block__image img {
    width: auto;
    height: auto;
}

.info-block__title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
}

.info-block__text {
    color: rgba(73, 73, 73, 0.80);
    font-size: 18px;
    margin-bottom: 32px;
}

.info-block__links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.info-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-radius: 8px;
    background: #F6F6F6;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    text-align: left;
}

.info-link .arrow {
    width: 24px;
    height: 24px;
    background-color: #DA291C;
    -webkit-mask: url('../images/arrow.svg') no-repeat center / contain;
    mask: url('../images/arrow.svg') no-repeat center / contain;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

.info-link:hover {
    background: #FCEEED;
    color: #DA291C;
}

.info-link:hover .arrow {
    transform: rotate(0deg);
}

@media (max-width: 768px) {
    .info-page {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .info-block {
        padding: 24px;
        margin-bottom: 40px;
    }

    .info-block__image img {
        height: 80px;
        width: auto;
    }

    .info-block__title {
        font-size: 24px;
    }

    .info-block__text {
        font-size: 16px;
    }

    .info-block__links {
        flex-direction: column;
    }
}
