* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f5f5f5;
  color: #333;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.2rem;
  color: #7f8c8d;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.gallery-item {
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 400px;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  border-radius: 5px;
  background-color: #f8f9fa;
  padding: 10px;
  flex: 1;
}

.caption {
  margin-top: auto;
  padding-top: 1rem;
  text-align: center;
  font-weight: 600;
  color: #34495e;
}

.info {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h2 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

ul {
  list-style-position: inside;
  margin-bottom: 2rem;
}

li {
  margin-bottom: 0.5rem;
  color: #34495e;
}

.disclaimer {
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 5px;
  font-size: 0.9rem;
  color: #666;
}

footer {
  text-align: center;
  padding: 2rem;
  color: #7f8c8d;
  background-color: #fff;
  margin-top: 2rem;
}

.intro,
.history,
.characteristics,
.health-notes,
.care-tips {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.intro p,
.history p {
  margin-bottom: 1rem;
  color: #2c3e50;
  font-size: 1.1rem;
}

.characteristics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.characteristic h3 {
  color: #e67e22;
  margin-bottom: 0.5rem;
}

.tips-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.tip {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 5px;
}

.tip h3 {
  color: #27ae60;
  margin-bottom: 0.5rem;
}

.section-image {
  width: 100%;
  height: 250px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  background-color: #fff;
  padding: 10px;
}

@media (max-width: 768px) {
  .section-image {
    max-height: 200px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  main {
    padding: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 250px;
  }

  .characteristics-grid,
  .tips-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
