/* Global styles */
body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background-color: #dce9fa;
  color: #333;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background-color: #ffffff;
  border-bottom: 1px solid #ccc;
}

header img {
  max-width: 400px;
  height: auto;
}

/* Main container */
.container {
  display: flex;
  flex-direction: row;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Main content */
.content {
  flex: 3;
  padding-right: 40px;
}

.content h2{
  text-align: left;
  color: #006699;
  margin-bottom: -10px;
  margin-top: 30px;

}
.content h3 {
  text-align: left;
  color: #006699;
  margin-bottom: 10px;
  margin-top: 20px;

}
.content p {
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Screenshot gallery */
.screenshots {
  margin-top: 40px;
}

.screenshot-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.screenshot-gallery img {
  width: 200px;
  height: auto;
  cursor: pointer;
  transition: transform 0.2s;
  border: 1px solid #ccc;
}

.screenshot-gallery img:hover {
  transform: scale(1.05);
}

/* Bullet points section */
.bullet-columns {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin-top: -20px;
  margin-bottom: -20px;
}

.bullet-columns ul {
  list-style-type: disc;
  padding-left: 20px;
}

.bullet-columns li {
  font-weight: bold;
  margin-bottom: 10px;
}

/* Sidebar */
.sidebar {
  flex: 1;
  padding: 20px;
  background-color: #f5f5f5;
  border-left: 1px solid #ccc;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.sidebar h3 {
  color: #006699;
  font-weight: bold;
  text-decoration: underline;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  margin-bottom: 30px;
  font-size: 18px;
}

.sidebar a {
  text-decoration: none;
  color: #006699;
}

.sidebar a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #f9f9f9;
  font-size: 14px;
  border-top: 1px solid #ccc;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
}
