.nested-category-tabs-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.nct-categories-container {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.nct-category-item {
    border-bottom: 1px solid #e5e7eb;
}

.nct-category-item:last-child {
    border-bottom: none;
}

.nct-category-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background-color: #f9fafb;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 1.125rem;
    font-weight: 500;
    color: #111827;
    text-align: left;
}

.nct-category-button:hover {
    background-color: #f3f4f6;
}

.nct-category-button.active {
    background-color: #e5e7eb;
}

.nct-category-icon {
    margin-right: 0.75rem;
    display: inline-flex;
    align-items: center;
}

.nct-category-title {
    flex: 1;
}

.nct-chevron {
    display: inline-flex;
    transition: transform 0.3s ease;
    color: #6b7280;
}

.nct-category-button.active .nct-chevron {
    transform: rotate(180deg);
}

.nct-subcategories-container {
    background: #ffffff;
}

.nct-subcategory-button {
    width: 100%;
    padding: 0.75rem 2rem;
    background-color: #ffffff;
    border: none;
    border-left: 4px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    color: #374151;
    text-align: left;
    display: block;
}

.nct-subcategory-button:hover {
    background-color: #f9fafb;
}

.nct-subcategory-button.active {
    background-color: #ecfdf5;
    border-left-color: #10b981;
    color: #111827;
    font-weight: 500;
}

.nct-content-display {
    margin-top: 1.5rem;
}

.nct-content-area {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.3s ease;
    overflow: hidden;
}

.nct-content-inner {
    width: 100%;
}

.nct-content-inner > .elementor {
    width: 100%;
}

.nct-content-inner > .elementor-section,
.nct-content-inner > .elementor-container,
.nct-content-inner > .e-container,
.nct-content-inner > .e-con {
    width: 100%;
    max-width: 100%;
}

.nct-content-area:has(.elementor) {
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.nct-content-area:not(:has(.elementor)) {
    padding: 2rem;
}

.nct-content-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.nct-content-body {
    color: #374151;
    line-height: 1.6;
}

.nct-content-body p {
    margin-bottom: 1rem;
}

.nct-content-body h1,
.nct-content-body h2,
.nct-content-body h3,
.nct-content-body h4,
.nct-content-body h5,
.nct-content-body h6 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.nct-content-body ul,
.nct-content-body ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.nct-content-body li {
    margin-bottom: 0.5rem;
}

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

@media (max-width: 768px) {
    .nct-category-button {
        font-size: 1rem;
        padding: 0.875rem 1rem;
    }

    .nct-subcategory-button {
        padding: 0.625rem 1.5rem;
    }

    .nct-content-area {
        padding: 1.5rem;
    }

    .nct-content-title {
        font-size: 1.25rem;
    }
}
