.angie-interactive-tabs-c636af71 {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.angie-interactive-tabs-c636af71.layout-right {
    flex-direction: row-reverse;
}

.angie-tabs-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 0 0 30%;
}

.angie-tab-title {
    background: transparent;
    border: none;
    border-left: 3px solid transparent;
    padding: 15px 20px;
    text-align: left;
    font-family: 'League Spartan', sans-serif;
    font-weight: 600;
    font-size: 24px;
    cursor: pointer;
    color: #497C97;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.layout-right .angie-tab-title {
    border-left: none;
    border-right: 3px solid transparent;
    text-align: right;
}

.angie-tab-title:hover,
.angie-tab-title.active {
    opacity: 1;
    color: #7BBB6D;
}

.angie-tab-title.active {
    border-left-color: #7BBB6D;
}
.layout-right .angie-tab-title.active {
    border-left-color: transparent;
    border-right-color: #7BBB6D;
}

.angie-tabs-content-area {
    flex: 1;
    position: relative;
    min-height: 200px;
}

.angie-tab-content {
    display: none;
    opacity: 0;
    font-family: 'Poppins', sans-serif;
    color: #0E1A3D;
    line-height: 1.6;
}

.angie-tab-content.active {
    display: block;
    animation: fadeSlideUp 0.5s ease forwards;
}

.angie-tab-content-inner {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Tablet and Mobile */
@media (max-width: 1024px) {
    .angie-interactive-tabs-c636af71,
    .angie-interactive-tabs-c636af71.layout-right {
        flex-direction: column;
    }
    
    .angie-tabs-menu {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
        scrollbar-width: thin;
        flex: auto;
    }

    .angie-tab-title {
        white-space: nowrap;
        border-left: none;
        border-bottom: 3px solid transparent;
        padding: 10px 15px;
        text-align: center;
    }
    
    .layout-right .angie-tab-title {
        border-right: none;
        text-align: center;
    }

    .angie-tab-title.active,
    .layout-right .angie-tab-title.active {
        border-left-color: transparent;
        border-right-color: transparent;
        border-bottom-color: #7BBB6D;
    }
}