/* styles.css */

/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base typography and body */
body {
  font-family: Arial, sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}

/* Header styling */
header {
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: #f5f5f5;
  border-bottom: 2px solid #ccc;
}

/* Logo */
header img {
  max-height: 140px;
  width: auto;
}

/* Header text */
.header-text {
  margin-left: 20px;
}

.header-text h1 {
  font-size: 1.8em;
  margin-bottom: 0.2em;
}

.header-text p {
  margin-bottom: 0.1em;
  font-size: 0.95em;
}

.contact-info {
  margin-top: 0.5em;
  font-size: 0.9em;
}

/* Navigation menu */
nav {
  background-color: #333;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 10px 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  display: block;
}

nav ul li a:hover {
  background-color: #555;
  border-radius: 4px;
}

/* Links */
a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
