/* ===== General Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== Page Background ===== */
body {
  min-height: 100vh;
  background: linear-gradient(180deg, #59b2e9 0%, #24455a 40%, #b0bec5 100%);
  font-family: "Poppins", "Segoe UI", Roboto, sans-serif;
  color: #222;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===== Header Section ===== */
header {
  text-align: center;
  padding: 40px 20px 25px;
}

/* Logo styling */
header .logo {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 15px;
}

/* Main Title */
header h1 {
  font-size: 2.2rem;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  color: #222;
}

/* Subtitle and update date */
header p {
  color: #555;
  margin: 5px 0;
}

/* ===== Main Content ===== */
main {
  width: 90%;
  max-width: 900px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 30px 25px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

/* Headings inside content */
main h2 {
  margin: 20px 0 10px;
  font-size: 1.4rem;
  color: #111;
}



main h3 {
  margin-top: 18px;
  font-size: 1.05rem;
  color: #333;
}

main p {
  color: #444;
  line-height: 1.6;
  margin-top: 6px;
  margin-bottom: 10px;
}

/* Links */
a {
  color: #0069c0;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ===== Footer ===== */
footer {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 25px;
}