* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: #9897A9;
  color: #fff;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-container img {
  height: 50px;
  margin-right: 1rem;
}

.logo-container h1 {
  font-size: 1.5rem;
}

/* Navigation */
nav {
  position: relative;
}

.hamburger {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  display: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links li a {
  color: white;
  text-decoration: none;
}

.nav-links.active {
  display: block;
  flex-direction: column;
}

/* Main Content */
main {
  padding: 2rem;
}

h2 {
  font-family: Arial, sans-serif;
  font-size: 18px;
  color: #000000;
}

section ol,
section ul {
  margin-left: auto;
  margin-right: 0;
  width: 98%;
  text-align: left;
}

/* Image Row */
.image-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.image-row a {
  width: 28%;
  display: block;
}

.image-row a img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.image-row2 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.image-row2 a {
  width: 28%;
  display: block;
}

.image-row2 a img {
  width: 50%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background-color: #222;
  color: white;
  margin-top: 2rem;
}

/* Mobile/Tablet View */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 1rem;
    background-color: #333;
    padding: 1rem;
    border-radius: 4px;
    width: 220px; /* or try 240px for breathing room */
    box-sizing: border-box;
    z-index: 1000;

  }

  .nav-links.active {
    display: flex;
  }

  .image-row {
    flex-direction: column;
    align-items: center;
  }

  .image-row a {
    width: 90%;
    max-width: 400px;
    margin-bottom: 1rem;
  }

  .image-row a img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
  }
}

.imgcard {
    width: 40%;
}



