header h1 {
    font-size: 2.5em;
    margin: 0;
}

header p {
    font-size: 1.2em;
    margin: 10px 0 0;
    text-align: justify; /* Justification for header paragraphs */
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 20px;
}

section h2 {
    font-size: 2em;
    color: #004d99;
    border-bottom: 2px solid #004d99;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

section h3 {
    font-size: 1.5em;
    color: #0055cc;
    margin-top: 20px;
}

section ul {
    margin: 10px 0 0 20px;
    list-style: disc;
}

section ul li {
    margin-bottom: 10px;
}

/* Course Syllabus Section */
#coursesyllabus {
    padding: 40px 0;
    background-color: #f9f9f9;
}

#coursesyllabus .bt_coursetitle {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

#coursesyllabus h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0056b3;
    margin-top: 20px;
    margin-bottom: 10px;
}

#coursesyllabus ul {
    list-style-type: none;
    padding: 0;
}

#coursesyllabus ul li {
    font-size: 1rem;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

#coursesyllabus ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    color: #0056b3;
}

#coursesyllabus .course_contents {
    background-color: #fff;
    padding: 30px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

#coursesyllabus .course_contents p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify; /* Justify text for course content */
}

#coursesyllabus .content_widgets {
    margin-top: 30px;
}

#coursesyllabus .course_contents ul li {
    margin-bottom: 10px;
}

/* Styling for batch schedule section */
#batch_schedule {
    padding: 40px 0;
    background-color: #f0f4f7;
}

#batch_schedule .bt_coursetitle {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

#batch_schedule .btchschedulenew {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

#batch_schedule .thiru_schedule {
    list-style-type: none;
    padding: 0;
}

#batch_schedule .thiru_schedule li {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#batch_schedule .batchdate {
    font-size: 1.2rem;
    font-weight: bold;
    color: #0056b3;
}

#batch_schedule .batchday, #batch_schedule .batchtime {
    font-size: 1rem;
    color: #555;
}

#batch_schedule .batch_btn {
    font-size: 1rem;
    background-color: #28a745;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

#batch_schedule .batch_btn:hover {
    background-color: #218838;
}

/* Responsive Styling */
@media only screen and (max-width: 768px) {
    #coursesyllabus .bt_coursetitle {
        font-size: 1.8rem;
    }
    #coursesyllabus h3 {
        font-size: 1.3rem;
    }
    #batch_schedule .bt_coursetitle {
        font-size: 1.8rem;
    }
    #batch_schedule .batch_btn {
        width: 100%;
        text-align: center;
    }

    /* For small screens, change paragraph text alignment */
    header p, #coursesyllabus .course_contents p {
        text-align: left; /* Left-align text on smaller screens */
    }
}
