.expert-container {
    width: 100%;
    padding: 40px 20px;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.expert-content {
    width: 100%;
    max-width: 1320px;
    display: flex;
    align-items: center;
    gap: 0;
}

.image-wrapper {
    flex: 0 0 648px;
    width: 648px;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.subtitle {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.info-wrapper {
    flex: 1;
    padding-left: 10%;
    box-sizing: border-box;
    min-width: 0;
}

.info-wrapper h1 {
    font-size: 2.2rem;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 600;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.features-list li {
    display: grid;
    grid-template-columns: 25px auto;
    align-items: center;
    gap: 10px;
}

.check-img {
    width: 25px;
    height: 25px;
}

.text-feature-list p {
    font-size: 15px;
    font-weight: 500;
    margin: 0px;
}

.social-icons {
    margin-top: 25px;
    display: flex;
    gap: 12px;
    border-top: 1px solid #e0e0e0;
    padding-top: 25px;
    justify-content: flex-start;
}

.social-icons a {
    width: 30px;
    height: 30px;
    /* background-color: #f2f2f2; */
    background-color: #dddddd;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #757575;
    font-size: 14px;
    transition: all 0.3s ease;
}

.icon a i {
    color: gray;
}

.icon a i:hover {
    color: var(--notices-warning-color);
}

.icon:hover {
    background-color: #e91e63;
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 1280px) {
    .image-wrapper {
        flex: 0 0 500px;
        width: 100%;
    }

    .info-wrapper {
        padding-left: 5%;
    }
}

@media (max-width: 1024px) {
.expert-content {
        flex-direction: column-reverse;
        gap: 30px;
    }
    .info-wrapper {
        padding-left: 0;
        width: 100%;
    }
    .info-wrapper h1 {
        font-size: 1.2rem;
    }
    .image-wrapper {
        flex: 0 0 350px;
        width: 100%;
        height: 350px;
    }
    .image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

@media (max-width: 768px) {

    .info-wrapper {
        padding-left: 0;
        padding-top: 30px;
    }

    h1 {
        font-size: 1.8rem;
    }
}