body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    display: flex;
    min-height: 100vh; /* Ensure the container takes at least the full viewport height */
}

.sidebar {
    background-color: #333;
    color: #f4f4f4;
    width: 200px; /* Adjust as needed */
    padding: 20px;
    position: fixed; /* Keep the sidebar fixed on scroll */
    top: 0;
    left: 0;
    height: 100%;
    overflow-y: auto; /* Enable scrolling if navigation items overflow */
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar li {
    margin-bottom: 10px;
}

.sidebar a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.sidebar a:hover {
    background-color: #555;
}

.content {
    display: flex; /* Make content a flex container */
    flex-direction: column; /* Stack children vertically */
    justify-content: flex-start; /* Push content to the bottom */
    align-items: center; /* Center horizontally */
    flex-grow: 1;
    padding: 20px;
    margin-left: 200px; /* Adjust to match sidebar width */
}

.image-container {
    display: flex;
    #flex-direction: column; /* Stack images vertically */
    margin-left: 20px;
    justify-content: right; /* Center images vertically in the container */
    align-items: right; /* Center images horizontally in the container */
    width: 100%; /* Take up the entire right side */
    padding: 20px;
}

.content-text {
													  
  margin-bottom: 10px;
														   
}

.image-container img {
    max-width: 80%; /* Adjust as needed for image size */
    height: auto;
    object-fit: contain;
    margin-bottom: 20px; /* Add space between images */
}

/* Responsive Design for Tablets */
@media (max-width: 992px) {
    .sidebar {
        width: 150px;
    }

    .content {
        margin-left: 170px;
        padding: 15px;
    }

    .sidebar a {
        padding: 8px 10px;
        font-size: 0.9em;
    }
      .image-container {
    display: flex;
    #flex-direction: column; /* Stack images vertically */
    margin-left: 20px;
    justify-content: right; /* Center images vertically in the container */
    align-items: right; /* Center images horizontally in the container */
    width: 100%; /* Take up the entire right side */
    padding: 20px;

}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
  .sidebar {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  .content {
    margin-left: 0;
  }
  .image-container {
    display: flex;
    flex-direction: column; /* Stack images vertically */
    margin-left: 20px;
    justify-content: right; /* Center images vertically in the container */
    align-items: right; /* Center images horizontally in the container */
    width: 100%; /* Take up the entire right side */
    padding: 20px;
}

