/* Reset and Basic Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #333;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Top Bar */
.top-bar {
  background-color: #112152;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.top-bar .logo img {
  height: 40px;
}

/* Main Content */
.main-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8f9fa;
  padding: 20px;
}

.content-container {
  text-align: center;
  max-width: 800px;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Description */
.content-container .description {
  font-size: 1.5em;
  color: #555;
  margin-bottom: 30px;
}

/* Features Block */
.features {
  margin-bottom: 40px; /* Added margin to space it from the download button */
  text-align: left;
}

.features h2 {
  font-size: 1.2em;
  color: #2c3e50;
  margin-bottom: 20px;
}

.features ul {
  list-style-type: none;
  padding-left: 0;
}

.features li {
  font-size: 1em;
  color: #555;
  margin-bottom: 15px;
}

.features li strong {
  color: #007bff;
}

/* Instructions */
.instructions p {
  font-size: 1em;
  margin-bottom: 20px;
}

.instructions a {
  color: #007bff;
  text-decoration: none;
}

.instructions a:hover {
  text-decoration: underline;
}

/* Download Button */
.download-button {
  padding: 12px 25px;
  font-size: 1.1em;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 20px;
}

.download-button:hover {
  background-color: #0056b3;
}

/* Footer */
.footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 15px 20px;
}

.footer a {
  color: #007bff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}
