.what-we-do-best {
    padding: 84px 0;
}

.what-we-do-best .container {
    display: flex;
    justify-content: space-between;
    gap: 117px;
}

.what-we-do-best .image {
    width: 350px;
    height: 250px;
    flex: 0 0 auto;
}

.what-we-do-best .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.what-we-do-best .content {
    flex: 1;
}

.what-we-do-best .content .title {
    font-size: 48px;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 32px;
}

.what-we-do-best .content .text {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 40px;
}

.what-we-do-best .accordion-tags {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.what-we-do-best .accordion-tag {
    display: inline-block;
    background: rgba(0, 0, 0, 0.05);
    color: rgba(0, 0, 0, 0.5);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.what-we-do-best .accordion-item {
    padding: 24px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.what-we-do-best .accordion-header {
    background-color: transparent;
    border: none;
    font-size: 28px;
    line-height: 1;
    font-weight: 400;
    font-style: italic;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    text-transform: capitalize;
    cursor: pointer;
}

.what-we-do-best .accordion-header:hover {
    color: var(--soft-blue);
}

.what-we-do-best .accordion-header .icon-close {
    color: #CBD3DC;
    transform: rotate(45deg);
    transition: 300ms ease-in-out;
}

.what-we-do-best .accordion-item .accordion-content {
    height: 0;
    opacity: 0;
    transition: 300ms ease-in-out;
    overflow: hidden;
}

.what-we-do-best .accordion-item:not(.open) .accordion-content {
    transition: 300ms ease-in-out;
}

.what-we-do-best .accordion-item.open .accordion-content {
    height: auto;
    opacity: 1;
    margin-top: 20px;
}

.what-we-do-best .accordion-item.open .accordion-header .icon-close {
    transform: rotate(0deg);
}

.what-we-do-best .accordion-content p {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 20px;
}

@media (max-width: 968px) {
    .what-we-do-best {
        padding: 24px 0;
    }

    .what-we-do-best .container {
        flex-direction: column-reverse;
        align-items: center;
        gap: 40px;
    }

    .what-we-do-best .content .title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 24px;
    }

    .what-we-do-best .content .text {
        font-size: 16px;
        margin-bottom: 24px;
        padding-left: 60px;
    }

    .what-we-do-best .image {
        width: 100%;
    }

    .what-we-do-best .image img {
        width: 100%;
        height: auto;
    }

    .what-we-do-best .content .accordion {
        padding-left: 60px;
    }

    .what-we-do-best .content .accordion-header {
        font-size: 20px;
    }

    .what-we-do-best .content .accordion-content p {
        font-size: 14px;
    }

    .what-we-do-best .content .accordion-tags {
        margin-top: 20px;
    }
}