/* Ensure the layout spans the full viewport */
body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
}

/* Full-page container with two columns */
.container {
  display: flex;
  height: 100%;
  width: 100%;
}

/* Left menu styling */
.menu {
  width: 20%;
  background-color: #323232;
  color: white;
  display: flex;
  flex-direction: column;
  padding: 10px;
  box-sizing: border-box;
  overflow-y: auto;
}

/* Logo and Website Name Section */
.logo-section {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  justify-content: center;
}

.logo {
  width: 70%;
  height: 100%;
  margin-right: 10px;
}

.website-name {
  font-size: 18px;
  margin: 0;
}

/* Menu Items */
.menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.menu ul li {
  padding: 15px;
  margin-bottom: 10px;
  cursor: pointer;
  background: #34495e;
  text-align: center;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.menu ul li:hover {
  background: cyan;
}

/* Right content styling */
.content {
  width: 80%;
  padding: 20px;
  box-sizing: border-box;
  overflow-y: auto;
  font-size: small;
}

/* Page Heading */
.page-heading {
  margin-top: 0;
  color: #2c3e50;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
}

/* Content Sections */
.content-section {
  display: none;
}

.content-section:first-child {
  display: block;
}



.image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-row {
  display: flex;
  justify-content: space-between;
}

.image-row img {
  width: 18%;
  /* Adjust width to fit 5 images in a row */
}