#expertise .container-custom {
    max-width: 1420px;
    margin: 0 auto;
    padding: 38px 20px;
}
#expertise .header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 24px;
}
#expertise .badge {
    background: #d8f3e5;
    color: #292929;
    font-size: 16px;
    font-weight: 600;
    padding: 9px 14px;
    border-radius: 6px;
    display: inline-block;
}
#expertise h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.3;
    margin: 6px 0 0;
}
#expertise .btn-outline-dark {
    position: relative;
    font-size: 21px;
    font-weight: 500;
    padding: 8px 10px;
    width: 143px;
    height: 55px;
    border-radius: 12px;
    border: 1px solid #262626 !important;
    color: #27272a !important;
    background: transparent !important;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    box-shadow: none !important;
    transition: color 0.2s, border-color 0.2s, background-color 0.2s;
    margin-bottom: 5px;
}
#expertise .btn-outline-dark:hover {
    color: #0f766e !important;
    border-color: #0f766e !important;
    background: transparent !important;
}
#expertise .content-wrapper {
    /* display: flex;
    align-items: flex-start; */
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 32px;
    max-width: 1420px;
    min-height: 400px;
    /* flex-wrap: nowrap; */
}
#expertise .accordion-wrapper {
    /* flex: 0 0 390px;
    /* display: flex;
    flex-direction: column; */
    grid-column: span 2;
}

.accordion{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
#expertise .image-wrapper {
    /* flex: 1; */
    grid-column: span 4;
    height: 100%;
    min-height: 0;
    display: flex;
}
#expertise .image-wrapper img {
    width: auto;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    transition: opacity 0.4s ease-in-out;
}
#expertise .accordion-item {
    border: none;
    background: #f5f5f5;
    border-radius: 16px;
    /* margin-bottom: 12px; */
    overflow: hidden;
}
#expertise .accordion-button {
    background: #f5f5f5;
    color: #000;
    font-weight: 600;
    font-size: 26px;
    line-height: 1.25;
    padding: 14px 18px;
    text-align: left;
    border-radius: 16px;
    box-shadow: none;
}
#expertise .accordion-button:hover,
#expertise .accordion-button:focus {
    background: #f5f5f5;
    box-shadow: none;
}
#expertise .accordion-body {
    background: #f5f5f5;
    color: #292929;
    font-size: 15px;
    padding: 16px 18px 20px;
}
#expertise .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2 6l6 6 6-6' fill='none' stroke='%23323232' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 1rem 1rem;
    transform: rotate(0deg);
    transition: transform 0.2s ease;
    opacity: 0.9;
}
#expertise .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    opacity: 1;
}
#expertise .accordion-body .mobile-image img {
    width: 100%;
    max-width: 424px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    margin: 12px auto 0;
}
@media (max-width: 991.98px) {
    #expertise .header-wrapper {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    #expertise .btn-outline-dark {
        width: auto;
        height: auto;
        padding: 8px 16px;
        font-size: 18px;
        margin-bottom: 0;
        margin-top: 10px;
    }

    #expertise .content-wrapper {
        /* flex-direction: column; */
        grid-template-columns: repeat(1,1fr);
    }
    #expertise .image-wrapper {
        display: none;
    }
    #expertise .accordion-wrapper {
        flex: 1;
        width: 100%;
    }
    #expertise .accordion {
        width: 100%;
        max-width: 100%;
    }
    #expertise .accordion-button {
        font-size: 16px;
    }
    #expertise .accordion-body {
        font-size: 16px;
    }
    #expertise .accordion-body .mobile-image img {
        max-width: 100%;
    }
}
@media (max-width: 576px) {
    #expertise h2 {
        line-height: 1.3;
        font-size: 30px;
    }
    #expertise .accordion-button {
        font-size: 16px;
        height: 48px;
        padding: 10px 16px;
    }
    #expertise .accordion-body {
        font-size: 16px;
    }
    #expertise .accordion {
        max-width: 424px;
        margin: 0 auto;
    }
}
