.container-distance-education {
    display: flex;
    width: 100%;
    gap: 20px;
}

.sidebar-distance-education,
.content-distance-education {
    padding: 20px;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.sidebar-distance-education {
    width: 28%;
    background: #f8f9fa;
}

.sidebar-distance-education ul {
    list-style: none;
    padding: 0;
}

.sidebar-distance-education ul li {
    width: 100%;
    border-radius: 8px;
    margin: 10px 0;
    padding: 10px;
    background: #345276;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.sidebar-distance-education ul li:hover:not(.active) {
    transform: translateX(10px);
    background: #007bff;
}

.sidebar-distance-education ul li a {
    text-decoration: none;
    color: white;
    display: block;
    font-size: 13px;
}

.sidebar-distance-education ul li.active {
    background-color: orange !important;
    color: white;
}

.sidebar-distance-education ul li.active a {
    color: white;
}

.content-distance-education {
    flex: 1;
}

.title-distance-education {
    font-size: 24px;
    font-weight: bold;
    position: relative;
    padding-left: 30px;
    color: #5539b4;
}

.title-distance-education::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 20px;
    height: 20px;
    background: #5539b4;
    clip-path: polygon(0 1, 100% 0, 0 100%);
}

.note-distance-education {
    margin-top: 20px;
    padding: 13px 0px 1px 15px;
    background: #d5e0e9;
    color: black;
    border-left: 4px solid #5b3bc6;
}


/* Latest News */

.latest-updates-section {
    margin: 20px 0;
}

.latest-title {
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 30px;
}

.latest-updates-list {
    list-style-type: disc;
    padding-left: 20px;
}

.latest-updates-list li {
    line-height: 30.45px;
    margin-bottom: 10px;
    font-size: 13px;
}

.latest-updates-list li a {
    color: #003366;
    text-decoration: none;
    font-weight: bold;
}

.latest-updates-list li a:hover {
    text-decoration: underline;
}

.latest-updates-list img {
    vertical-align: middle;
    margin-left: 5px;
    height: 18px;
}


/* About Us Section */

.about-us-section .head-about {
    font-size: 24px;
    color: #003366;
    margin-bottom: 15px;
    border-bottom: 2px solid #00509e;
    display: inline-block;
    padding-bottom: 5px;
    line-height: 1.4;
}

.about-us-section .second-head-about {
    font-size: 18px;
    color: #0056b3;
    line-height: 1.6;
}

.about-us-section .para-about {
    font-size: 13px;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

@media (max-width: 600px) {
    .about-us-section {
        padding: 20px 15px;
    }
    .about-us-section h5 {
        font-size: 20px;
    }
    .about-us-section p {
        font-size: 15px;
    }
}


/* Objective Section */

.objectives-section {
    background-color: #f1f6fb;
    padding: 25px 20px;
    border-left: 4px solid #00509e;
    margin: 30px 0;
    border-radius: 6px;
}

.objectives-section h3 {
    font-size: 24px;
    color: #003366;
    margin-bottom: 15px;
    border-bottom: 2px solid #00509e;
    display: inline-block;
    padding-bottom: 5px;
    line-height: 1.4;
}

.objectives-section ul {
    list-style: none;
    padding-left: 20px;
    margin: 0;
}

.objectives-section li {
    position: relative;
    padding-left: 25px;
    font-size: 13px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 10px;
    /* list-style-type: disc; */
}

.objectives-section li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #00509e;
    /* arrow color */
    font-weight: bold;
    font-size: 18px;
}


/* Brochure Link Section */

.brochure-link-section {
    margin: 25px 0;
    text-align: left;
}

.brochure-link-section h6 {
    margin: 0;
    font-size: 16px;
}

.brochure-link-section a {
    display: inline-block;
    background-color: #00509e;
    color: #fff;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.brochure-link-section a:hover {
    background-color: #003366;
    color: white;
}


/* Toggle Link */

.toggle-container-distance-education {
    max-width: 600px;
    margin-bottom: 10px;
    display: inline-block;
}

.toggle-wrapper-distance-education {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    background-color: #fdfdfd;
    transition: background-color 0.3s;
    /* ...existing styles... */
    border-bottom: 1px solid #0a0909;
    /* underline */
    margin-top: 20px;
}

.toggle-wrapper-distance-education,
.toggle-content-distance-education {
    border-bottom: 1px solid #0a0909;
    /* You can change the color as needed */
    padding-bottom: 10px;
    /* Optional: adds spacing between text and underline */
    margin-bottom: 10px;
    /* Optional: adds spacing below the underline */
}

.toggle-title-distance-education {
    color: #0a0909;
}

.toggle-content-distance-education li {
    color: #0a0909;
}

.toggle-wrapper-distance-education:hover {
    background-color: #f0f0f0;
}

.toggle-icon {
    transition: transform 0.3s ease;
    width: 20px;
}

.bookmark-icon {
    width: 20px;
}

.toggle-wrapper-distance-education.active .toggle-icon {
    transform: rotate(90deg);
}

.toggle-content-distance-education {
    display: none;
    animation: slideIn 0.4s forwards;
    margin-top: 6px;
    /* ...existing styles... */
    border-bottom: 1px solid #131212;
    /* underline */
    padding-bottom: 10px;
}

.toggle-wrapper-distance-education.active+.toggle-content-distance-education {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toggle-content-distance-education ul {
    margin: 0;
    padding: 0;
}

.toggle-content-distance-education li {
    text-align: left;
    /* Ensures left alignment */
}

.toggle-content-distance-education a {
    display: inline-block;
    color: #da7f1f;
    text-decoration: none;
    font-size: 15px;
    padding: 8px 0;
    transition: color 0.3s, text-decoration 0.3s;
}

.toggle-content-distance-education a:hover {
    color: #0056b3;
}

.container-distance-education {
    width: 48% !important;
}

.sidebar-tab {
    width: 30% !important;
}

.sidebar-tab .sidebar-distance-education {
    width: 100% !important;
}

.content-material {
    width: 68% !important;
}