body {
  font-family: 'Open Sans', sans-serif;
  color: #050505;
  margin: 0;
  padding: 0;
}

header, footer {
  background-color: #000;
  color: #fff;
  padding: 20px;
  text-align: center;
}

header a, footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}

header a:hover, footer a:hover {
  text-decoration: underline;
}

h1, h2, h3 {
  color: #1f1f1f;
  text-align: center;
}

section {
  padding: 40px 20px;
}

#site-header {
  opacity: 0;
  transition: opacity 0.3s ease-in;
  min-height: 80px;
}

#site-header.loaded {
  opacity: 1;
}


.header {
  background-color: #050505; /* Matches logo background */
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.header-inner {
  max-width: 60%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px; /* Increased spacing */
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-text {
  font-size: 20px;
  font-weight: bold;
  color: white;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.nav a {
  margin: 0 10px;
  color: white;
  text-decoration: none;
}

.nav a:hover {
  text-decoration: underline;
}


.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 150px;
  background-color: #fff;
  border: 1px solid #ccc;
  z-index: 1000;
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.dropdown-menu a {
  display: block;
  padding: 8px 20px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background-color: #f5f5f5;
  color: #f2681f;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.footer {
  background-color: #000; /* Full-width black background */
  color: white;
  padding: 40px 0;
  width: 100%;
}

.footer-container {
  width: 60%;
  margin: 0 auto;
  text-align: center;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  gap: 40px; /* Ensures equal spacing between columns */
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 20px;
  text-align: center;
}

.footer-column {
  flex: 1;
  min-width: 0; /* Prevents overflow and allows equal flexing */
  color: white;
  text-align: center;
}

.footer-links-text {
  text-align: center;
  font-size: 14px;
  color: white;
  margin-top: 20px;
}

.footer-links-text p {
  margin: 6px 0;
  line-height: 1.4;
  color: white;
}

.footer-links-text a {
  color: #b0c4de;
  text-decoration: underline;
  padding: 0;
  margin: 0;
}

.footer-links-text a:hover {
  color: #ffffff;
}

html {
  scroll-behavior: smooth;
}
