/* styles.css */

/* General body font and color */
body {
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  color: #2c3e50; /* Dark slate gray for better readability */
  font-size: 17px;
  line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4 {
  font-family: 'Segoe UI Semibold', 'Helvetica Neue', sans-serif;
  color: #007acc;  /* Professional blue tone */
}

/* Links */
a {
  color: #007acc;
}
a:hover {
  color: #005b99;
}

/* Footer */
footer {
  font-size: 14px;
  color: #6c757d;
}
