/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* General Styles */
body {
  font-family: "Poppins", Arial, sans-serif;
  background: linear-gradient(135deg, #141e30, #243b55);
  color: #f4f4f4;
  line-height: 1.7;
  padding: 40px;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

header h1 {
  text-align: center;
  color: #ffd700;
  font-size: 2.2em;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

h2 {
  color: #00bcd4;
  font-size: 1.5em;
  margin-top: 25px;
  margin-bottom: 10px;
}

h3 {
  color: #ffcc80;
  font-size: 1.2em;
  margin-top: 20px;
  margin-bottom: 8px;
}

p {
  margin-bottom: 15px;
  font-size: 1em;
  color: #e0e0e0;
}

footer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9em;
  color: #cccccc;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

/* Hover Effects */
h2:hover, h3:hover {
  color: #ff9800;
  transition: 0.3s ease;
}

/* Links (if added later) */
a {
  color: #ffd700;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
