/* Информационный текст с раскрывающимся блоком */
.info-text {
    padding: 60px 0;
    background: #FDF8F2;
    border-top: 1px solid rgba(198,164,63,0.1);
    border-bottom: 1px solid rgba(198,164,63,0.1);
}

.info-text__title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    color: #2E2E2E;
    text-align: center;
    margin-bottom: 30px;
}

.info-text__visible,
.info-text__hidden {
    font-size: 16px;
    line-height: 1.7;
    color: #4A4A4A;
}

.info-text__visible {
    margin-bottom: 20px;
    overflow: hidden; /* clearfix */
}

.info-text__visible p {
    margin-bottom: 15px;
}

.info-text__hidden {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    background: transparent;
}

.info-text__hidden.show {
    max-height: 2000px;
    transition: max-height 0.5s ease-in;
}

.info-text__hidden h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 400;
    color: #2E2E2E;
    margin: 25px 0 15px 0;
}

.info-text__hidden h3:first-of-type {
    margin-top: 0;
}

.info-text__hidden p {
    margin-bottom: 15px;
}

.info-text__hidden ul {
    margin: 0 0 20px 20px;
    list-style-type: disc;
}

.info-text__hidden li {
    margin-bottom: 8px;
    color: #4A4A4A;
}

/* Изображения с обтеканием */
.info-text__image-wrapper {
    margin: 0 0 15px 0;
    max-width: 300px;
}

.info-text__image-wrapper--left {
    float: left;
    margin-right: 25px;
    margin-bottom: 15px;
}

.info-text__image-wrapper--right {
    float: right;
    margin-left: 25px;
    margin-bottom: 15px;
}

.info-text__image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Обёртка для кнопки (центрирование) */
.info-text__button-wrapper {
    text-align: center;
    clear: both;
    padding-top: 20px;
}

/* Стили кнопки (отличаются от FAQ: золотой фон, белый текст, тень) */
.info-text__toggle {
    display: inline-block;
    padding: 14px 40px;
    background: #C6A43F; /* золотой фон */
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(198,164,63,0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-text__toggle:hover {
    background: #b08c35; /* более тёмный оттенок при наведении */
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(198,164,63,0.4);
}

.info-text__toggle[aria-expanded="true"] {
    background: #b08c35;
    box-shadow: 0 5px 15px rgba(198,164,63,0.3);
    transform: translateY(0);
}

/* Адаптивность */
@media screen and (max-width: 768px) {
    .info-text__title {
        font-size: 28px;
    }
    .info-text__visible,
    .info-text__hidden {
        font-size: 15px;
    }
    .info-text__hidden h3 {
        font-size: 20px;
    }
    .info-text__image-wrapper--left,
    .info-text__image-wrapper--right {
        float: none;
        margin: 20px auto;
        max-width: 100%;
    }
    .info-text__button-wrapper {
        padding-top: 10px;
    }
    .info-text__toggle {
        width: 100%;
        padding: 12px 20px;
        font-size: 15px;
    }
}