.cz-about__section {
    padding: 30px 0;
}

.cz-about__header {
    margin-bottom: 20px;
}

.cz-about__title {
    font-size: 40px;
    font-weight: 700 !important;
}

.cz-about__btn {
    display: block;
    padding: 15px 45px;
    color: #fff;
    font-size: 16px;
    background-color: var(--secondary-fc);
    border-radius: 4px;
}

.cz-about__description {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cz-about__description ul {
    margin: 16px 0;
    padding-left: 40px;
}

.cz-about__paragraph:nth-child(2),
.cz-about__paragraph:nth-child(3) {
    transition: opacity 0.3s ease, max-height 0.3s ease;
    overflow: hidden;
}

.hidden {
    display: none;
}

.cz-about__control-btn {
    transition: transform 0.3s ease;
    cursor: pointer;
    background: none;
    border: none;
    width: 33px;
    height: 32px;
    margin: 20px auto 0;
    display: block;
}

.cz-about__control-btn.rotated {
    transform: rotate(180deg);
}

.cz-about__content {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    font-size: 20px;
}

.cz-about__text-title {
    font-size: 24px !important;
    font-weight: 500;
}

.cz-about__paragraph {
    font-size: 20px;
}

.cz-about__text {
    font-weight: bolder;
}

.cz-about__link {
    text-decoration: none;
}

@media only screen and (max-width: 650px) {
    .cz-about__section {
        padding-bottom: 100px;
    }

    .cz-about__section .cz-container {
        position: relative;
    }

    .cz-about__btn {
        position: absolute;
        bottom: -70px;
        left: 0;
        padding: 15px 0;
        width: 100%;
        text-align: center;
    }

    .cz-about__text-title {
        font-size: 16px !important;
    }

    .cz-about__content p,
    .cz-about__content li {
        font-size: 14px !important;
    }
}