/* Base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Header styles */
.site-header {
  background-color: #1A2A3A;
  color: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header .logo {
  font-family: 'Georgia', serif;
  font-size: 2.2em;
  font-weight: bold;
  color: #FFD700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  transition: color 0.3s ease;
}

.site-header .logo:hover {
  color: #FFF;
}

.site-header .main-nav ul {
  display: flex;
  gap: 25px;
}

.site-header .main-nav a {
  color: #fff;
  font-size: 1.1em;
  font-weight: 500;
  padding: 5px 0;
  position: relative;
  transition: color 0.3s ease;
}

.site-header .main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #FFD700;
  transition: width 0.3s ease;
}

.site-header .main-nav a:hover::after,
.site-header .main-nav a.active::after {
  width: 100%;
}

.site-header .main-nav a:hover,
.site-header .main-nav a.active {
  color: #FFD700;
}

.hamburger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1000;
}

.hamburger-menu span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #FFD700;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Footer styles */
.site-footer {
  background-color: #1A2A3A;
  color: #fff;
  padding: 40px 0 20px;
  font-size: 0.9em;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.site-footer .footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.site-footer .footer-col {
  flex: 1;
  min-width: 250px;
}

.site-footer h3 {
  color: #FFD700;
  font-size: 1.3em;
  margin-bottom: 15px;
  position: relative;
}

.site-footer h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 2px;
  background-color: #FFD700;
}

.site-footer p {
  margin-bottom: 10px;
}

.site-footer .footer-nav ul li {
  margin-bottom: 8px;
}

.site-footer .footer-nav a {
  color: #ccc;
  transition: color 0.3s ease;
}

.site-footer .footer-nav a:hover {
  color: #FFD700;
}

.site-footer .footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 20px;
}

.site-footer .copyright {
  color: #aaa;
}

/* Responsive styles */
@media (max-width: 768px) {
  .site-header .container {
    flex-wrap: wrap;
  }

  .site-header .logo {
    font-size: 1.8em;
  }

  .hamburger-menu {
    display: block;
  }

  .site-header .main-nav {
    flex-basis: 100%;
    order: 3;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
  }

  .site-header .main-nav.active {
    max-height: 400px;
    transition: max-height 0.5s ease-in;
  }

  .site-header .main-nav ul {
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    background-color: #1A2A3A;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-header .main-nav ul li {
    margin: 10px 0;
  }

  .site-header .main-nav a {
    font-size: 1.2em;
    padding: 10px 0;
    display: block;
  }

  .site-footer .footer-columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-footer .footer-col {
    min-width: unset;
    width: 100%;
    margin-bottom: 20px;
  }

  .site-footer h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}