:root {
  --primary-color: #0A2463;
  --secondary-color: #E0B34F;
  --text-color: #ffffff;
  --light-bg: #1a3a70;
  --dark-bg: #071a40;
}

/* Basic Reset & Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--dark-bg);
}

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

a {
  color: var(--secondary-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header Styles */
.site-header {
  background-color: var(--primary-color);
  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-size: 2.2em;
  font-weight: bold;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-header .logo:hover {
  color: var(--text-color);
  text-decoration: none;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.main-nav a {
  color: var(--text-color);
  font-weight: 500;
  font-size: 1.05em;
  padding: 5px 0;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: var(--secondary-color);
}

.main-nav .cta-button {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-left: 25px;
}

.main-nav .cta-button:hover {
  background-color: #f0c96e;
  color: var(--primary-color);
  text-decoration: none;
}

.hamburger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 100;
}

.hamburger-menu .bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text-color);
  border-radius: 2px;
  margin: 5px 0;
  transition: all 0.3s ease-in-out;
}

/* Footer Styles */
.site-footer {
  background-color: var(--primary-color);
  color: var(--text-color);
  padding: 40px 0 20px;
  font-size: 0.9em;
  border-top: 1px solid var(--light-bg);
}

.site-footer h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-size: 1.2em;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col p,
.footer-nav ul li {
  margin-bottom: 8px;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav a {
  color: var(--text-color);
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--light-bg);
}

.footer-bottom p {
  margin: 0;
  color: #bbb;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .main-nav ul {
    gap: 15px;
  }
  .main-nav a {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .site-header .container {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .site-header .logo {
    order: 1;
    flex-grow: 1;
    text-align: left;
  }

  .hamburger-menu {
    display: block;
    order: 2;
  }

  .main-nav {
    order: 3;
    flex-basis: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: var(--primary-color);
    width: 100%;
    padding-bottom: 0;
  }

  .main-nav.active {
    max-height: 500px; /* Adjust based on content */
    padding-bottom: 15px;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 0;
    gap: 10px;
  }

  .main-nav ul li {
    width: 100%;
    text-align: center;
  }

  .main-nav a {
    display: block;
    padding: 10px 20px;
    width: 100%;
  }

  .main-nav .cta-button {
    display: block;
    width: calc(100% - 40px);
    margin: 15px auto 0;
    text-align: center;
  }

  .hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .footer-columns {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col h3 {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .site-header .logo {
    font-size: 1.8em;
  }
  .main-nav a {
    font-size: 0.95em;
  }
  .main-nav .cta-button {
    padding: 8px 15px;
    font-size: 0.9em;
  }
}