body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #1A202C;
  margin: 0;
  padding: 0;
  color: #E2E8F0;
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: auto;
  background: #2D3748;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.image-container {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.image-container img {
  max-width: 80%;
  max-height: 600px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
  border: 1px solid #4FD1C5;
}

.image-container img:hover {
  transform: scale(1.02);
}

/* Modal styles for zoomed view */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  margin-top: 2%;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

h1 {
  font-size: 2.4rem;
  text-align: center;
  background: #389289;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

ul {
  margin-top: 2rem;
  list-style: none;
  padding: 0;
}

ul li {
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.8rem 1rem;
  border-radius: 10px;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  border: 1px solid #4A5568;
}

ul li i {
  margin-right: 0.8rem;
  color: #4FD1C5;
}