body { font-family: 'Arial', sans-serif; margin: 0; padding: 0; color: #333; line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }

/* Header Styles */
.site-header { background-color: #0A192F; 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 { color: #FFD700; font-size: 28px; font-weight: bold; text-decoration: none; text-transform: lowercase; letter-spacing: 1px; }
.site-header .main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; }
.site-header .main-nav li { margin-left: 25px; }
.site-header .main-nav a { color: #fff; text-decoration: none; font-size: 16px; padding: 5px 0; transition: color 0.3s ease; white-space: nowrap; }
.site-header .main-nav a:hover, .site-header .main-nav a.active { color: #FFD700; }
.site-header .hamburger-menu { display: none; cursor: pointer; background: none; border: none; padding: 10px; position: relative; z-index: 1000; }
.site-header .hamburger-menu span { display: block; width: 25px; height: 3px; background-color: #FFD700; margin: 5px 0; transition: all 0.3s ease; }

/* Footer Styles */
.site-footer { background-color: #0A192F; color: #ccc; padding: 40px 0 20px; font-size: 14px; }
.site-footer h3 { color: #FFD700; font-size: 18px; margin-bottom: 15px; font-weight: bold; }
.site-footer .footer-columns { display: flex; flex-wrap: wrap; justify-content: space-between; margin-bottom: 30px; }
.site-footer .footer-col { flex: 1; min-width: 200px; margin-right: 20px; margin-bottom: 20px; }
.site-footer .footer-col:last-child { margin-right: 0; }
.site-footer p { line-height: 1.6; margin-bottom: 10px; }
.site-footer a { color: #fff; text-decoration: none; transition: color 0.3s ease; }
.site-footer a:hover { color: #FFD700; }
.site-footer .footer-nav ul { list-style: none; margin: 0; padding: 0; }
.site-footer .footer-nav li { margin-bottom: 8px; }
.site-footer .footer-bottom { text-align: center; border-top: 1px solid #22374e; padding-top: 20px; margin-top: 20px; }
.site-footer .footer-bottom p { margin: 0; }

.no-scroll { overflow: hidden; }

/* Responsive Styles */
@media (max-width: 768px) {
  .site-header .main-nav {
    display: none; /* Hide nav by default on mobile */
    position: absolute;
    top: 65px; /* Adjust based on header height */
    left: 0;
    width: 100%;
    background-color: #0A192F;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    z-index: 999;
  }
  .site-header .main-nav.active {
    display: block; /* Show nav when active */
  }
  .site-header .main-nav ul {
    flex-direction: column;
    padding: 20px 0;
  }
  .site-header .main-nav li {
    margin: 0;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .site-header .main-nav li:last-child {
    border-bottom: none;
  }
  .site-header .main-nav a {
    display: block;
    padding: 15px 0;
  }
  .site-header .hamburger-menu {
    display: block; /* Show hamburger on mobile */
  }
  .site-header .hamburger-menu.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .site-header .hamburger-menu.active span:nth-child(2) { opacity: 0; }
  .site-header .hamburger-menu.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .site-footer .footer-columns {
    flex-direction: column;
    align-items: center;
  }
  .site-footer .footer-col {
    min-width: unset;
    width: 90%;
    margin-right: 0;
    text-align: center;
  }
}