.is-1aa6f4b0-container {
    display: flex;
    flex-direction: column;
    font-family: sans-serif;
}

@media (min-width: 768px) {
    .is-1aa6f4b0-container {
        flex-direction: row;
        align-items: flex-start;
    }
}

.is-1aa6f4b0-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
}

@media (min-width: 768px) {
    .is-1aa6f4b0-nav {
        width: 35%;
        max-width: 350px;
    }
}

.is-1aa6f4b0-tab {
    position: relative;
    background: transparent !important;
    border: none;
    text-align: left;
    padding: 16px 0;
    font-size: 24px;
    font-weight: 600;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.is-1aa6f4b0-tab:hover {
    color: #4b5563;
    background-color: transparent !important;
}

.is-1aa6f4b0-tab.active {
    color: #111827;
}

/* Base border line for inactive tabs */
.is-1aa6f4b0-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e5e7eb;
}

/* Animated fill for active tab */
.is-1aa6f4b0-progress-fill {
    height: 100%;
    width: 0;
    background-color: #111827; /* Default color, overridden by settings */
}

/* The animation is added via JS inline styles so we can control it */
@keyframes fillProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}


.is-1aa6f4b0-content-area {
    flex: 1;
    width: 100%;
}

.is-1aa6f4b0-panel {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.is-1aa6f4b0-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.is-1aa6f4b0-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin-bottom: 24px;
    object-fit: cover;
}

.is-1aa6f4b0-title {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.3;
}

.is-1aa6f4b0-desc {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

.is-1aa6f4b0-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.is-1aa6f4b0-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #4b5563;
}

.is-1aa6f4b0-checklist svg {
    flex-shrink: 0;
}

.is-1aa6f4b0-highlight {
    background-color: #E8F3F9;
    border-radius: 16px;
    padding: 24px;
}

.is-1aa6f4b0-hl-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    margin-top: 0;
}

.is-1aa6f4b0-hl-desc {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.5;
}

.is-1aa6f4b0-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.is-1aa6f4b0-badge {
    background-color: transparent;
    border: 1px solid #1A8CCD;
    color: #1A8CCD;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 9999px;
}