.info-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 32px;
}

.info-section .info-section-title {
    font-size: 45px;
    font-weight: 700;
    color: var(--color-text-1);
    text-align: center;
}

.info-section .info-section-content {
    width: 100%;
    padding: 24px;
    max-width: 996px;
    background-color: var(--color-background-2);
    color: var(--color-accent-4);
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    position: relative;
}

.info-section .info-section-description {
    position: relative;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.info-section .info-section-description.collapsed {
    max-height: 200px;
}

.info-section .info-section-description.expanded {
    max-height: none;
}

.info-section .info-section-description p {
    margin-bottom: 16px;
}

.info-section .info-section-description span {
    font-weight: 700;
}

.info-section .info-section-description .info-section-list {
    margin-bottom: 16px;
    list-style-type: disc;
    padding-left: 24px;
}

.info-section .info-section-read-more-button {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    background: none;
    border: none;
    color: var(--color-accent-1);
    cursor: pointer;
    padding: 8px 0;
    transition: color 0.2s ease;
    margin-top: 16px;
}

.info-section .info-section-read-more-button:hover {
    color: var(--color-accent-2);
}

.info-section .info-section-read-more-button img {
    width: 24px;
    height: 24px;
    transition: transform 0.2s ease;
}

.info-section .info-section-read-more-button .button-text {
    font-weight: 700;
    font-size: 16px;
}

/* Gradient overlay for collapsed state */
.info-section .info-section-description.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, var(--color-background-2));
    pointer-events: none;
}

@media only screen and (max-width: 1280px) {
    .info-section .info-section-description.collapsed {
        max-height: 180px;
    }
}

@media only screen and (max-width: 768px) {
    .info-section .info-section-title {
        font-size: 32px;
    }
    
    .info-section .info-section-content {
        font-size: 16px;
        padding: 20px;
    }
    
    .info-section .info-section-description.collapsed {
        max-height: 160px;
    }
}