

.subheader {
  background-color: #333; /* Dark background for subheader */
  padding: 10px 20px;
  color: white;
  display: flex;
  justify-content: flex-end; /* Aligns the content to the right */
}

/* Navigation styling */
.contact-nav {
  display: flex;
  align-items: center;
}

/* Contact list styling */
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px; /* Space between contact items */
}

/* Individual contact item styling */
.contact-item {
  display: flex;
  align-items: center;
}

.contact-link {
  color: white;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.contact-link i {
  margin-right: 8px; /* Space between icon and text */
  font-size: 18px;
}

/* Hover effect for links */
.contact-link:hover {
  color: #1e90ff; /* Light blue on hover */
  text-decoration: underline; /* Optional underline on hover */
}
