/* Стили для секции */
.information-disclosure-section {
    padding: 60px 0;
    text-align: center; /* Все содержимое по центру */
}

.info-block-item {
    margin-bottom: 50px; /* Отступ между блоками */
}
.info-block-item:last-child {
    margin-bottom: 0;
}

.info-block-title {
    font-size: 2.2em;
    font-weight: bold;
    color: #000;
    margin-top: 0;
    margin-bottom: 20px;
}

.info-block-description {
    font-size: 1em;
    color: #333; /* Темно-серый цвет текста */
    max-width: 650px; /* Ограничиваем ширину текстового блока */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-button-green {
    display: inline-block;
    background-color: var(--primary-color); /* Ярко-зеленый цвет кнопки */
    color: #fff; /* Белый текст на кнопке */
    padding: 12px 35px; /* Размеры кнопки */
    border-radius: 25px; /* Сильное скругление */
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95em;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.cta-button-green:hover {
    background-color: var(--primary-color); /* Темнее при наведении */
    color: #fff;
    transform: translateY(-2px);
}

/* Адаптивность */
@media (max-width: 768px) {
    .info-block-title {
        font-size: 1.8em;
    }
    .info-block-description {
        font-size: 0.95em;
    }
    .cta-button-green {
        padding: 10px 30px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .info-block-title {
        font-size: 1.6em;
    }
    .info-block-description {
        font-size: 0.9em;
    }
}