/* styles.css */
body {
  font-family: Arial, sans-serif;
  margin: 20px;
  background-color: #f9faff;
  color: #4E758B; /* Text color */
  line-height: 1.6;
}

nav {
  margin-bottom: 30px;
  background-color: #1273EA; /* Main Color */
  padding: 12px 20px;
  border-radius: 5px;
  text-align: center;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
  color: #3EADF9; /* Secondary Color */
}

main h2 {
  color: #1273EA; /* Main Color */
  margin-bottom: 20px;
}

main h3 {
  color: #3EADF9; /* Secondary Color */
}

ul {
  list-style-type: disc;
  margin-left: 20px;
}

footer {
  margin-top: 40px;
  font-size: 0.9em;
  color: #4E758B;
  border-top: 1px solid #ddd;
  padding-top: 10px;
  text-align: center;
}

.contact-info p {
  margin: 8px 0;
}

a {
  color: #1273EA;
}

a:hover {
  color: #3EADF9;
}

button.cta {
  background-color: #63D435; /* Call to action */
  border: none;
  padding: 10px 20px;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
}

button.cta:hover {
  background-color: #4caf2f;
}
