body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

header {
  background-color: #222;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.logo {
  height: 50px;
}

.navbar {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.navbar li a {
  text-decoration: none;
  color: rgb(120, 47, 47);
  font-weight: bold;
  padding: 8px 12px;
  transition: background-color 0.3s;
}

.navbar li a:hover {
  background-color: #33e3c3;
  border-radius: 4px;
}

main {
  padding: 40px;
  text-align: center;
}
.image-section {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.image-box {
  text-align: center;
}

.image-box img {
  width: 250px;
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.image-box img:hover {
  transform: scale(1.05);
}
.container {
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.logo {
  height: 50px;
  max-height: 50px;
  display: inline-block;
  object-fit: contain;
}
header {
  background-color: #222;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}
.logo {
  height: 50px;
  max-height: 50px;
  display: inline-block;
  object-fit: contain;
}
