/* Reset some default spacing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

/* Header */
header {
  text-align: center;
  background-color: white;
  padding: 20px 0;
  border-bottom: 2px solid #eee;
}

.logo {
  max-width: 300px;
  height: auto;
}

/* Main content */
main {
  max-width: 800px;
  margin: 40px auto;
  text-align: center;
}

/* Intro paragraph */
.intro p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  padding: 0 10px;
}

/* Buttons */
.buttons {
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  background-color: #0066cc;
  color: white;
  padding: 12px 24px;
  margin: 10px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #004999;
}

/* Latest updates section */
.updates h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.updates p {
  font-size: 1rem;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 50px;
  font-size: 0.9rem;
  color: #777;
}