/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set up basic styles for the page */
body {
    font-family: Arial, sans-serif;
    background-color: #f3f3f3;
    margin: 0;
    padding: 0;
}

.header {
    background-color: #333;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.header .logo {
    max-width: 100px; /* Adjust the width as needed */
    margin-left: 20px; /* Move the logo to the left */
}

.title-container {
    text-align: center;
    flex-grow: 1; /* Expand to fill available space */
}

header h1 {
    font-size: 24px;
}

.main-container {
    display: flex;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.sidebar {
    flex: 0.3; /* Adjust the flex value to control the width */
    background-color: #f3f3f3;
    padding: 20px;
    margin-right: 20px; /* Add right margin */
}

.sidebar-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.sidebar-button {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    padding: 5px 10px; /* Adjust the padding values */
    display: block;
    text-align: center;
    margin-bottom: 10px;
    cursor: pointer;
}

.sidebar-button:hover {
    background-color: #0056b3;
    color: #fff;
}

.content {
    flex: 2;
    padding: 20px;
}

h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
}


h3 {
    margin-top: 20px; /* Add space above h3 headers */
    margin-bottom: 10px; /* Add space below h3 headers */
}

h4 {
    margin-top: 15px; /* Add space above h4 headers */
    margin-bottom: 5px; /* Add space below h4 headers */
}

ul {
    margin-bottom: 5px;
}

a{
    margin-top: 15px;
}

.video-container {
    max-width: 100%; /* Adjust the maximum width as needed */
    overflow: hidden; /* Hide overflowing content */
    margin: 0 auto; /* Center the video horizontally */
}
