.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #1A2B4C;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
}
.site-header .header-wrapper {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.site-header .header-main-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.site-header .logo {
  font-family: 'Arial', sans-serif;
  font-size: 28px;
  font-weight: bold;
  color: #FFD700;
  text-decoration: none;
  padding: 5px 0;
  text-align: center;
  flex: 1;
}
.site-header .hamburger-menu {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 1001;
}
.site-header .hamburger-menu .icon-bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #FFD700;
  margin: 5px 0;
  transition: 0.4s;
  border-radius: 2px;
}
.site-header .main-nav {
  display: none;
  width: 100%;
  background-color: #1A2B4C;
  position: absolute;
  top: 100%;
  left: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 999;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.site-header .main-nav.active {
  max-height: 500px;
}
.site-header .main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.site-header .main-nav ul li {
  width: 100%;
  text-align: center;
}
.site-header .main-nav ul li a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  transition: background-color 0.3s ease;
}
.site-header .main-nav ul li a:hover {
  background-color: #2e4a7a;
  color: #FFD700;
}
.site-header .header-desktop-buttons {
  display: none;
}
.site-header .header-mobile-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 10px 0;
  z-index: 1000;
  background-color: #1A2B4C;
}
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #1A2B4C;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}
.btn-primary:hover {
  background: linear-gradient(45deg, #FFA500, #FFD700);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
  transform: translateY(-2px);
}
.btn-secondary {
  background-color: #4CAF50;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover {
  background-color: #45a049;
  transform: translateY(-2px);
}
.btn-tertiary {
  background-color: #007BFF;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.btn-tertiary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}
@media (min-width: 769px) {
  .site-header {
    min-height: 80px;
    padding: 0 40px;
  }
  .site-header .header-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
  }
  .site-header .header-main-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .site-header .hamburger-menu {
    display: none;
  }
  .site-header .logo {
    text-align: left;
    flex: none;
  }
  .site-header .main-nav {
    display: block;
    position: static;
    max-height: none;
    overflow: visible;
    flex-grow: 1;
    background-color: transparent;
    box-shadow: none;
  }
  .site-header .main-nav ul {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
  }
  .site-header .main-nav ul li {
    width: auto;
  }
  .site-header .main-nav ul li a {
    padding: 10px 15px;
    color: #fff;
    font-size: 16px;
  }
  .site-header .header-desktop-buttons {
    display: flex;
    gap: 10px;
  }
  .site-header .header-mobile-buttons {
    display: none;
  }
}
.site-footer {
  background-color: #1A2B4C;
  color: #fff;
  padding: 40px 20px 20px;
  font-size: 15px;
}
.site-footer .footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}
.site-footer .footer-column {
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
}
.site-footer .footer-column h3 {
  color: #FFD700;
  font-size: 18px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}
.site-footer .footer-column p {
  margin-bottom: 10px;
  line-height: 1.6;
}
.site-footer .footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-nav ul li a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 5px 0;
  transition: color 0.3s ease;
}
.site-footer .footer-nav ul li a:hover {
  color: #FFD700;
}
.site-footer .footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #bbb;
}