/* CSS Reset & Modern Color Palette */
    * { 
      box-sizing: border-box; 
      margin: 0; 
      padding: 0; 
    }
    
    :root {
      --primary-dark: #0f2e1b;
      --primary-green: #184c2a;
      --accent-gold: #d4af37;
      --accent-green: #277c44;
      --light-bg: #f4f7f5;
      --text-dark: #1e293b;
      --text-muted: #64748b;
      --text-light: #ffffff;
      --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    }

    body { 
      font-family: 'Inter', sans-serif; 
      line-height: 1.6; 
      background-color: var(--light-bg);
      color: var(--text-dark);
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      overflow-x: hidden;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      width: 100%;
    }

    /* 1. Main Header */
    header { 
      background: #FFFCFC; 
      color: var(--primary-dark); 
      padding: 20px 0; 
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      
    }

  .header-content {
      display: flex; 
      align-items: center; 
      justify-content: space-between;
      gap: 20px;
    }
    .logo-container {
      display: flex;
      align-items: center;
      background: transparent;
      padding: 0;
    }

    .logo-container img { 
      height: 110px;
      width: auto;
      max-width: 100%;
      object-fit: contain;
    }

    header h1 {
      font-family: 'Cinzel', serif;
      font-size: 2rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-align: right;
      text-transform: uppercase;
      line-height: 1.25;
      color: var(--primary-dark);
    }

    /* 2. Sticky Navigation Bar */
    nav { 
      background: var(--primary-green); 
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
      position: sticky;
      top: 0;
      z-index: 1000;
      border-top: 1px solid rgba(255,255,255,0.1);
    }

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

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--text-light);
      font-size: 1.6rem;
      cursor: pointer;
      padding: 12px 0;
    }

    nav ul.nav-menu { 
      list-style: none; 
      display: flex; 
      align-items: center;
      width: 100%;
      justify-content: space-between;
    }

    nav ul.nav-menu li { 
      position: relative; 
    }

   nav ul.nav-menu li a { 
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 16px 12px; 
      color: var(--text-light); 
      text-decoration: none; 
      font-weight: 600; 
      font-size: 0.9rem;
      transition: all 0.2s ease;
    }

    nav ul.nav-menu li a:hover { 
      background: var(--primary-dark); 
      color: var(--accent-gold);
    }

    .nav-cta {
      background-color: var(--accent-gold);
      color: var(--primary-dark) !important;
      font-weight: 700 !important;
      border-radius: 4px;
      padding: 5px 12px !important;
      margin-left: 10px;
      transition: transform 0.2s, background 0.2s !important;
    }

    .nav-cta:hover {
      background-color: #e5c158 !important;
      transform: translateY(-1px);
    }

    /* Dropdowns */
    nav ul.nav-menu li ul.dropdown { 
      display: none; 
      position: absolute; 
      top: 100%; 
      left: 0; 
      background: var(--primary-dark); 
      min-width: 220px; 
      box-shadow: 0 10px 20px rgba(0,0,0,0.25);
      border-radius: 0 0 6px 6px;
      overflow: visible;
      border-top: 3px solid var(--accent-gold);
      z-index: 1050;
      list-style: none;
    }

    nav ul.nav-menu li ul.dropdown li a {
      padding: 10px 16px;
      font-weight: 500;
      font-size: 0.85rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      display: flex;
      justify-content: space-between;
      align-items: center;
      white-space: nowrap;
    }

    nav ul.nav-menu li:hover > ul.dropdown { 
      display: block; 
    }

    .dropdown-icon {
      font-size: 0.7rem;
    }

    .has-flyout {
      position: relative;
    }

    .has-flyout .flyout-menu {
      display: none;
      position: absolute;
      top: 0;
      left: 100%;
      min-width: 220px;
      background-color: var(--primary-dark);
      box-shadow: 0 10px 20px rgba(0,0,0,0.25);
      border-left: 2px solid var(--accent-gold);
      border-radius: 0 6px 6px 6px;
      list-style: none;
    }

    .has-flyout:hover > .flyout-menu {
      display: block;
    }

    .flyout-icon {
      font-size: 0.7rem;
      margin-left: 10px;
    }

    /* Top Utility Bar */
    .top-bar {
      background-color: #081a0f;
      color: #94a3b8;
      font-size: 0.85rem;
      padding: 8px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .top-bar-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .top-bar-info span {
      margin-right: 20px;
    }

    .top-bar-info i {
      color: var(--accent-gold);
      margin-right: 6px;
    }

    .top-bar-links a {
      color: #cbd5e1;
      text-decoration: none;
      margin-left: 15px;
      transition: color 0.2s;
    }

    .top-bar-links a:hover {
      color: var(--accent-gold);
    }

    /* 6. Footer Layout & Link Styling */
    footer {
      background: var(--primary-dark);
      color: var(--text-light);
      padding: 45px 0 20px 0;
      margin-top: auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.9fr 1.5fr 1.1fr;
      gap: 30px;
      margin-bottom: 30px;
    }

    .footer-col h4 {
      font-family: 'Cinzel', serif;
      font-size: 0.95rem;
      margin-bottom: 16px;
      color: var(--accent-gold);
      letter-spacing: 0.5px;
      text-transform: uppercase;
      position: relative;
      padding-bottom: 6px;
    }

    .footer-col h4::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 30px;
      height: 2px;
      background-color: var(--accent-gold);
    }

    .footer-col p, .footer-col ul {
      font-size: 0.83rem;
      color: #cbd5e1;
      line-height: 1.7;
    }

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

    .footer-col ul li {
      margin-bottom: 6px;
    }

    .footer-col ul li a {
      color: #cbd5e1;
      text-decoration: none;
      transition: color 0.2s ease, padding-left 0.2s ease;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .footer-col ul li a i.fa-angle-right {
      font-size: 0.75rem;
      color: var(--accent-gold);
      transition: transform 0.2s ease;
    }

    .footer-col ul li a:hover {
      color: var(--accent-gold);
      padding-left: 3px;
    }

    .footer-col ul li a:hover i.fa-angle-right {
      transform: translateX(2px);
    }

    .external-links-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4px 15px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 18px;
      text-align: center;
      font-size: 0.8rem;
      color: #94a3b8;
    }

    /* RESPONSIVE BREAKPOINTS */
    @media (max-width: 1024px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
      }
    }

    @media (max-width: 992px) {
      .logo-container img { height: 42px; }
      header h1 { font-size: 1.1rem; }
    }

    @media (max-width: 768px) {
      header { height: auto; padding: 8px 0; }
      nav { height: auto; }
      
      .header-content { 
        flex-direction: column; 
        text-align: center;
        gap: 6px;
      }
      
      header h1 { 
        text-align: center; 
        font-size: 1rem; 
      }

      .menu-toggle { display: block; }

      nav ul.nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--primary-dark);
        padding: 8px 0;
        border-top: 1px solid rgba(255,255,255,0.1);
      }

      nav ul.nav-menu.active { 
        display: flex; 
      }

      nav ul.nav-menu li { 
        width: 100%; 
      }

      nav ul.nav-menu li a {
        padding: 10px 16px;
        justify-content: space-between;
        font-size: 0.88rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      }

      nav ul.nav-menu li ul.dropdown,
      .has-flyout .flyout-menu {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
        background-color: #081a0f;
        border-top: none;
        border-left: none;
        padding-left: 15px;
      }

      nav ul.nav-menu li.open > ul.dropdown,
      .has-flyout.open > .flyout-menu {
        display: block;
      }

      .nav-cta { 
        margin: 10px 16px !important; 
        width: calc(100% - 32px);
        text-align: center;
        justify-content: center;
      }

      .slider-container { 
        height: calc(100vh - 180px); 
      }
      
      .slide-caption h2 { font-size: 1.15rem; }
      .slide-caption p { font-size: 0.8rem; }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
      }

      .external-links-grid {
        grid-template-columns: 1fr;
      }
    }
  