/* General Page Styling */
body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa; /* Light background for better readability */
  color: #212529;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Header Styling */
header {
  background-color: #343a40;
  color: white;
  padding: 20px 10px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
  margin: 0;
  font-size: 24px;
}

/* Main Content Styling */
main {
  padding: 20px;
  max-width: 800px;
  margin: auto;
}

/* Section Styling */
section {
  margin-bottom: 20px;
  padding: 15px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

section h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #343a40;
  border-bottom: 2px solid #ffcc00; /* Accent line under heading */
  padding-bottom: 5px;
}

section p, section ul, section ol {
  margin: 10px 0;
}

/* List Styling */
ul, ol {
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

/* Button Styling */
button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  color: white;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  margin-top: 20px;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

button:hover {
  background-color: #0056b3;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

button.info-link {
  font-size: 14px;
  background-color: #28a745;
}

button.info-link:hover {
  background-color: #218838;
}

/* Links Styling */
a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
  header h1 {
    font-size: 20px;
  }

  button {
    font-size: 14px;
    padding: 8px 16px;
  }

  section {
    padding: 10px;
  }
}
