body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}


.header-section {
    background-color: #0033A0; /* Deep blue background */
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-evenly; /* Adjusted for even spacing */
    padding: 20px;
    width: 100vw;
}
.content {
    text-align: center;
    width: 47%; /* Adjust content width to leave space for the image */
}

.header-section h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color:white;
    line-height: 40px;
}

.header-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color:rgb(216, 212, 207);
}

.course-info {
    font-size: 16px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.course-info span {
    background-color: #1A4A99; /* Slightly darker blue for contrast */
    padding: 5px 15px;
    border-radius: 5px;
}

.image-placeholder {
    background-color: red; /* Placeholder color */
    width: 150px; /* Adjust the width as necessary */
    height: 150px; /* Adjust the height as necessary */
    border-radius: 50%; /* Circular shape */
    display: flex; /* Ensures the placeholder is aligned properly */
    justify-content: center; /* Center horizontally in the div */
    align-items: center; /* Center vertically in the div */
}