/* --- Main Wrapper --- */
.akg-tabs-wrapper {
    display: flex;
    gap: 30px;
}

/* --- Tabs Navigation (Left Side) --- */
.akg-tabs-nav {
    flex: 1.5; /* Tabs nav takes 1 part of the flex container */
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between tab buttons */
}

.akg-tab-btn {
    background: #fff;
    border: 1px solid #D32F2F;
    border-radius: 15px;
    padding: 22px 20px;
    text-align: left;
    color: #212121;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    outline: none;
    font-family: "Montserrat", sans-serif;
}

.akg-tab-btn:hover {
    border-color: rgba(225, 43, 43, 0.5);
    background: rgba(225, 43, 43, 0.05);
}

.akg-tab-btn.active {
    background-color: #d32f2f; /* Dark red for active */
    color: #fff;
    border-color: #d32f2f;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* --- Tabs Content Area (Right Side) --- */
.akg-tabs-content-area {
    flex: 2;
    background: #fff;
    border: 1px solid #D32F2F;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.akg-tab-content {
    display: none; /* Hide content by default */
}

.akg-tab-content.active {
    display: block; /* Show content when active */
    animation: akgFadeIn 0.5s ease;
}

/* Fade in animation for content */
@keyframes akgFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Content Styling --- */
.akg-tab-text {
    margin-bottom: 30px;
    color: #444;
    line-height: 1.6;
}

.akg-tab-text h2 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #d32f2f;
    font-size: 22px;
}

.akg-tab-text h3 {
    margin-top: 20px;
    color: #212121;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0px;
}

.akg-tab-text ul {
    margin-bottom: 20px;
}

.akg-tab-text li {
    margin-bottom: 8px;
}

.akg-tab-img {
    text-align: center;
}

.akg-tab-img img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid #eee;
}

/* --- Responsive Layout --- */
@media screen and (max-width: 991px) {
    .akg-tabs-wrapper {
        flex-direction: column; /* Stack vertically on small screens */
    }
    .akg-tabs-nav {
        flex: none;
        width: 100%;
    }
    .akg-tabs-content-area {
        flex: none;
        width: 100%;
        padding: 30px;
    }
}