body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: #eaeaea;
}

.container {
  width: 80%;
  margin: 40px auto;
  background: #ffffff;
  padding: 40px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Main Title */
.title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 25px;
  color: #000;
}

/* Subtitle */
.subtitle {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Paragraph */
.text {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 25px;
}

/* Center Heading */
.center-heading {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  margin: 30px 0 20px;
  color: #444;
}

/* Image */
.image-container {
  text-align: center;
  margin-bottom: 25px;
}

.image-container img {
  width: 100%;
  max-width: 800px;
  border-radius: 4px;
}

.references {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #999;
}

.references h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.references a {
  display: block;
  color: #3b6f7f;
  text-decoration: underline;
  margin-bottom: 15px;
  line-height: 1.6;
  word-break: break-all; /* handles long links */
}

.references a:hover {
  color: #1a4f5c;
}