/* Global styles */
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background: #e3f2fd; /* Light blue background */
  color: #333;
}

.container {
  width: 90%;
  margin: auto;
  overflow: hidden;
  max-width: 960px;
  padding: 20px;
}

/* Header styles */
header {
  background: linear-gradient(to right, #1e88e5, #42a5f5); /* Blue gradient */
  color: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
  margin: 0;
  font-size: 2.5em;
  letter-spacing: 1px;
}

header p {
  font-size: 1.3rem;
}

/* Main content styles */
main {
  margin: 30px 0;
}

section.downloads {
  background: #ffffff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}

section.downloads h2 {
  margin-top: 0;
  color: #1e88e5; /* Accent blue color */
  font-size: 1.8em;
  text-align: center;
}

section.downloads ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

section.downloads li {
  text-align: center;
}

section.downloads a {
  display: inline-block;
  background: #1e88e5; /* Primary blue color */
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
}

section.downloads a:hover {
  background: #0d47a1; /* Darker blue color on hover */
}

/* Footer styles */
footer {
  text-align: center;
  margin: 20px 0;
  font-size: 0.9rem;
  color: #666;
  border-top: 3px solid #1e88e5;
  padding-top: 10px;
}
