.accrd-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    min-height: 500px;
}

.accrd-nav-section {
    flex: 0 0 300px;
    padding: 20px 10px;
    /*border-right: 1px solid #e0e0e0; */
}

.accrd-nav-item {
    padding: 20px 0;
    cursor: pointer;
    border-bottom: 1px solid #e0e0e0;
    color: #b1b2b5;
    font-size: 22px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.accrd-nav-item:last-child {
    border-bottom: none;
}

.accrd-nav-item:hover {
    color: #333;
}

.accrd-nav-item.accrd-active {
    color: #333;
}

.accrd-nav-item.accrd-active::before {
    color: #279989;
}

.accrd-nav-item::before {
    content: '◆';
    font-size: 14px;
}

.accrd-content-section {
    flex: 1;
    padding: 20px 10px;
    display: flex;
    justify-content: center;
}

.accrd-content-item {
    display: none;
    animation: accrdFadeIn 0.5s ease;
    width: 100%;
}

.accrd-content-item.accrd-active {
    display: block;
}

.accrd-content-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 30px;
    width: 100%;
}

.accrd-content-wrapper .accrd-content-image {
    max-width: 350px !important;
    width: 350px !important;
    height: auto;
    display: block;
    border-radius: 8px;
    flex-shrink: 0;
}

.accrd-content-text {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    max-width: 300px;
    padding-bottom: 20px;
}

@keyframes accrdFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .accrd-container {
        flex-direction: column;
    }

    .accrd-nav-section {
        flex: 0 0 auto;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding: 10px;
    }

    .accrd-content-section {
        padding: 15px 10px;
    }

    .accrd-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .accrd-content-wrapper .accrd-content-image {
        max-width: 100% !important;
        width: 100% !important;
    }

    .accrd-content-text {
        font-size: 16px;
        max-width: 100%;
        padding-bottom: 0;
        padding-top: 20px;
    }
}
