   /* Content Styling */
   .content-body {
    line-height: 1.8;
    color: #333;
    overflow-wrap: break-word;
    word-wrap: break-word;
    width: 100%;
    max-width: 100%;
    position: relative;
    text-align: justify;
}

.content-body h1,
.content-body h2,
.content-body h3,
.content-body h4 {
    width: 100%;
    text-align: center;
    position: relative;
    clear: both;
    display: block;
    color: #0e4c00;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.content-body::after {
    content: '';
    display: table;
    clear: both;
}

.content-body ol,
.content-body ul {
    width: 100%;
    clear: both;
    display: block;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: block;
}

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

.content-body table {
    width: 100%;
    margin-bottom: 1rem;
    border-collapse: collapse;
    overflow-x: auto;
    display: block;
    max-width: 100%;
}

.content-body table th,
.content-body table td {
    padding: 0.75rem;
    border: 1px solid #dee2e6;
}

.content-body table th {
    background-color: #f8f9fa;
}

.content-body blockquote {
    border-left: 4px solid #0e4c00;
    padding-left: 1rem;
    margin-left: 0;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .content-body {
        padding: 0 10px;
    }
    
    .content-body table {
        font-size: 14px;
    }
}

/* Animation */
/* .card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
} */

/* Additional styles for tabs */
.nav-tabs {
    border-bottom: 2px solid #0e4c00;
}

.nav-tabs .nav-link {
    color: #000000 !important;
    border: none;
    padding: 12px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    border: none;
    color: #0e4c00 !important;
    background-color: #98d58b !important;
    
}

.nav-tabs .nav-link.active {
    color: white !important;
    background-color: #0e4c00;
    border: none;
    border-radius: 4px 4px 0 0;
}

.nav-tabs .nav-link.active:hover {
    color: white !important;
    background-color: #0e4c00 !important;
    border: none;
    border-radius: 4px 4px 0 0;
}

/* Tab content transition */
.tab-content > .tab-pane {
    transition: all 0.3s ease-in-out;
}