/* Basic reset and styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
}

/* Header styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: #191919;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

header a img{
  border-radius: 100px;
  border: 1px solid white;
}

header img {
  height: 50px;
}

/* Navigation */
nav ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
}

nav li {
  margin: 0 10px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s ease-in-out;
}

nav a:hover {
  color: #f5af5f;
}

/* Services */
#services {
  text-align: center;
  padding: 2rem 0;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

table {
  border-collapse: collapse;
  margin: 0 auto;
  width: 80%;
  max-width: 800px;
}

th, td {
  padding: 1rem;
  text-align: left;
}

th {
  background-color: #333;
  color: #fff;
  text-transform: uppercase;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}

td:first-child {
  font-weight: bold;
}

td:last-child {
  font-weight: bold;
}

button:hover {
  background-color: #555;
}

footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
}
