.expert-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px 100px;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    background-color: #F9FAFA;
}

.text-block {
    flex: 0 0 55%;
    transform: translateX(-50px);
    opacity: 0;
    animation: slideInLeft 1s ease-out forwards;
    color: black;
}

.image-block img {
    border-radius: 40px;
}

.image-block {
    flex: 0 0 35%;
    transform: translateX(50px);
    opacity: 0;
    animation: slideInRight 1s ease-out forwards;

}

@keyframes slideInLeft {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

h1 {
    font-size: 2em;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: var(--weight-normal);
    padding: 0px;
}

p {
    font-size: 1em;
    margin-bottom: 10px;
}

.intro-text {
    margin-bottom: 20px;
}

.ulis {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
}

.ulis li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.ulis li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 1.2em;
    top: 0;
}

@media (max-width: 768px) {
    .expert-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 40px;
    }

    .text-block, .image-block {
        max-width: 100%;
        transform: none;
        opacity: 1;
    }

    .image-block {
        margin-top: 20px;
    }
}