.dynamic-content .content-wrapper {
    position: relative;
    height: 400px;
    /* Fixed height for smooth transitions */
}

.dynamic-content .content-item {
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px);
}

.dynamic-content .content-item.active {
    opacity: 1 !important;
    transform: translateY(0);
    position: relative;
}

.feature-simple .feature-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active state - Blue background with blue border */
.feature-simple .feature-item.active {
    background-color: rgb(239 246 255);
    /* bg-blue-50 */
    border-left-color: #004aad;
    /* border-azota-primary */
    transform: translateX(4px);
}

/* Hover state - Light gray background with blue border */
.feature-simple .feature-item:hover:not(.active) {
    background-color: rgb(243 244 246);
    /* bg-gray-100 */
    border-left-color: #93c5fd;
    /* border-blue-300 - lighter blue */
    transform: translateX(2px);
}

/* Active item hover - Enhanced blue */
.feature-simple .feature-item.active:hover {
    background-color: rgb(219 234 254);
    /* bg-blue-100 - slightly darker blue */
    transform: translateX(6px);
}

/* Smooth fade animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-item.active {
    animation: fadeInUp 0.7s ease-out;
}