.section-title {
    font-size: 1.25rem;
    font-weight: 600 !important;
}

.link {
    color: #ffffff;
    cursor: pointer;
    user-select: none;
    word-break: break-all;
    background-color: #006400;
    padding: 3px 15px;
    border-radius: 1rem;
    display: inline-block;
    text-decoration: none;;
}

.link:hover{
    background-color: #025002;
}

.link:active{
    background-color: #014401;
}

.custom-bullet li::before {
    content: " ❇️ ";
    color: #006400;
    margin-right: 5px;
}

a {
    color: #006400;
    text-decoration: underline;
}

.content-section {
    background-color: #ffffff;
    margin-bottom: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 100, 0, 0.15);
    /* Richer green-tinted shadow */
    transition: box-shadow 0.3s ease-in-out;
    padding-bottom: 1rem;
}

.content-section .section, .content-section section{
    padding-inline: 1.5rem;
}

.content-section:hover {
    box-shadow: 0 6px 20px rgba(0, 100, 0, 0.25);
    /* Enhanced on hover */
}

ul.child-list {
    list-style-type: none;
    padding-left: 10px;
}

ul.child-list li::before {
    content: " ❇️ ";
    color: #006400;
    margin-right: 5px;
}

li {
    margin-bottom: 10px;
}

.content-section h2, .content-section h1 {
    padding-top: 2rem;
}

.whatsnext-ad-section {
    background: linear-gradient(135deg, #004d00, #006400, #00a86b);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.whatsnext-ad-section ul li {
    margin-bottom: 0.5rem;
}

.whatsnext-ad-section a.btn:hover {
    transform: scale(1.05);
    transition: 0.3s ease;
}

/* AD Box */
.ad-alert-box {
    background-color: #f0fff4;
    /* Light green background for freshness */
    border: 2px solid #006400;
    /* Dark green border for branding */
    border-radius: 12px;
    padding: 16px;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 100, 0, 0.1);
    width: 35%; 
    margin-inline: 2rem 1.5rem;
}

.ad-alert-box.small{
    width: 100%; 
    margin-inline: 0;
}

.ad-alert-box img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 12px;
}

.ad-alert-box h2 {
    font-size: 1.2rem;
    color: #006400;
    margin-bottom: 8px;
}

.ad-alert-box p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 12px;
}

.ad-alert-box .btn {
    display: inline-block;
    background-color: #006400;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.ad-alert-box .btn:hover {
    background-color: #004d00;
}

.course-list {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 1rem;
}

.course-list li {
    position: relative;
    padding: 10px 10px 10px 30px;
    margin: 5px 0;
    font-weight: 500;
    /* cursor: pointer; */
    width: fit-content;
    border-radius: 10px;
}

.course-list li:hover {
    color: #006400;
    background-color: #e9f7e9;
}

.course-list li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #015e01;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.course-list li:hover::before {
    width: 14px;
    height: 14px;
    background-color: #006400;
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.4);
}
.accordion-button:not(.collapsed) {
    color: #006400 !important;
    background-color: #caf5c8 !important;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color) !important;
}