/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  background-color: #e0e0e0;
  height: 100vh;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: #333;
  overflow-x: hidden;
  line-height: 1.7;
}

/* Container */
.container {
  max-width: 960px;
  margin: 40px auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Logo */
.logo {
  display: block;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto 25px;
  background-color: #0077cc;
  border-radius: 4px;
}

/* Headings */
h1 {
  text-align: center;
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.updated {
  text-align: center;
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 30px;
}

h2 {
  font-size: 1.5rem;
  color: #0077cc;
  margin-bottom: 12px;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 6px;
}

/* Paragraphs & Lists */
p {
  margin-bottom: 16px;
}

ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

li {
  margin-bottom: 10px;
}

/* Links */
a {
  color: #0077cc;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

/* Section Styling */
section {
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

section:hover {
  background-color: #f9fcff;
  padding: 10px;
  border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 20px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.3rem;
  }
}
