/* ==========================================================================
   Cyber Consulting Service LLC - Official Stylesheet
   Domain: cyberconsultingservice.com
   Location: Longview, TX
   Security Stack: CCS Sentinel, M365 Data Protection & Purview, SaaS Alerting
   ========================================================================== */

:root {
  /* Color Palette */
  --navy: #07111f;
  --navy-2: #0b1b2d;
  --navy-3: #102b45;
  --blue: #1683ff;
  --blue-hover: #0d72df;
  --cyan: #25c7e8;
  --cyan-glow: rgba(37, 199, 232, 0.18);
  --ink: #142033;
  --muted: #5f6f82;
  --line: #dce5ef;
  --surface: #f4f8fc;
  --white: #ffffff;
  --ok: #19a974;
  
  /* Unified Layout & Design System */
  --shadow: 0 18px 50px rgba(7, 17, 31, 0.10);
  --shadow-hover: 0 22px 60px rgba(7, 17, 31, 0.15);
  --radius: 16px;
  --max: 1140px; /* Standardized max-width across all site containers */
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Base Resets & Typography
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background-color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Primary Container Utility */
.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--navy);
  border-bottom: 1px solid rgba(37, 199, 232, 0.15);
  position: relative;
  overflow: visible;
}

/* Tech Grid Pattern in Header */
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(37, 199, 232, 0.08) 0%, transparent 50%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 24px 24px, 24px 24px;
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.nav-container {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 26px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.logo:hover img {
  transform: scale(1.03);
}

.nav-container nav {
  margin: 0 auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: #dce8f5;
  font-size: 0.92rem;
  font-weight: 650;
  padding: 6px 0;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: #55d8ff;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--cyan);
  border-radius: 2px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid #31506d;
  color: var(--white);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 1.1rem;
  cursor: pointer;
}

/* ==========================================================================
   Buttons & Action Components
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 99px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(22, 131, 255, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background-color: var(--blue-hover);
  box-shadow: 0 12px 28px rgba(22, 131, 255, 0.35);
}

.btn-outline {
  border-color: #9bb1c7;
  color: var(--ink);
  background-color: var(--white);
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.btn-dark {
  background-color: var(--navy);
  color: var(--white);
}

.btn-dark:hover {
  background-color: var(--navy-2);
}

/* ==========================================================================
   Hero Section - Lighter Background Image Opacity Adjustment
   ========================================================================== */

.hero {
  position: relative;
  background-color: var(--navy);
  color: var(--white);
  padding: 80px 0;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background Image Layer — abstract brand-color network pattern */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    url('../Images/hero-network-pattern.webp'),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-position: center center, 0 0, 0 0;
  background-size: cover, 24px 24px, 24px 24px;
  background-repeat: no-repeat, repeat, repeat;
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
}

/* Soft Gradient Overlay for Readability */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg, 
    rgba(7, 17, 31, 0.65) 0%, 
    rgba(11, 27, 45, 0.45) 50%, 
    rgba(7, 17, 31, 0.65) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6ee5ff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  margin-bottom: 16px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background-color: var(--cyan);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
  font-weight: 800;
  color: var(--white) !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  font-weight: 800;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.3;
  margin-bottom: 9px;
  font-weight: 750;
}

.card-heading {
  font-size: 1.18rem;
  line-height: 1.3;
  margin-bottom: 9px;
  font-weight: 750;
}

.lead {
  font-size: 1.16rem;
  color: #dce8f5 !important;
  max-width: 680px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero .btn-outline {
  background: transparent;
  color: var(--white);
  border-color: #5f7b95;
}

.hero .btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.hero-visual {
  border: 1px solid rgba(112, 216, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  padding: 10px;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  max-width: 440px;
  width: 100%;
  justify-self: end;
}

.hero-visual img {
  display: block;
  border-radius: 10px;
  width: 100%;
  height: auto;
}

/* ==========================================================================
   Content Sections & Utilities
   ========================================================================== */

.section {
  padding: 78px 0;
}

.section-tight {
  padding: 42px 0;
}

.bg-surface {
  background-color: var(--surface);
}

.bg-dark {
  background-color: var(--navy);
  color: var(--white);
}

.text-center {
  text-align: center;
}

.max-copy {
  max-width: 780px;
  margin: 0 auto;
}

.muted {
  color: var(--muted);
}

.light-copy {
  color: #b9cadb;
}

/* ==========================================================================
   Partner Badge Component
   ========================================================================== */

.partner-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 42px;
  background: linear-gradient(180deg, var(--white) 0%, #f8fbfe 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(7, 17, 31, 0.05);
  transition: var(--transition);
}

.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(7, 17, 31, 0.09);
  border-color: #c7d8e8;
}

.partner-card img {
  max-width: 240px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(7, 17, 31, 0.08));
}

/* ==========================================================================
   Grids & Cards
   ========================================================================== */

.grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: 22px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: 0 5px 20px rgba(7, 17, 31, 0.035);
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-hover);
  border-color: #cbd8e5;
  transform: translateY(-4px);
}

.card.dark {
  background-color: #0d2136;
  border-color: #24435f;
  color: var(--white);
}

.card p {
  color: var(--muted);
}

.card.dark p {
  color: #b9cadb;
}

.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eaf5ff 0%, #d5ebff 100%);
  color: #0875e1;
  border: 1px solid rgba(22, 131, 255, 0.2);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.35rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(22, 131, 255, 0.1);
  transition: var(--transition);
}

.card:hover .icon-box {
  transform: scale(1.08);
  background: linear-gradient(135deg, #1683ff 0%, #0d72df 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(22, 131, 255, 0.3);
}

.kicker {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0875e1;
  margin-bottom: 6px;
}

.pill {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 99px;
  background: #eaf8f2;
  color: #087a51;
  font-size: 0.73rem;
  font-weight: 800;
  margin-bottom: 8px;
}

/* Native Contact Form */
.ccs-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
}

.ccs-form input[type="text"],
.ccs-form input[type="email"],
.ccs-form input[type="tel"],
.ccs-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: var(--transition);
}

.ccs-form textarea {
  resize: vertical;
  min-height: 120px;
}

.ccs-form input:focus,
.ccs-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--cyan-glow);
}

.form-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
}

.form-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
}

.form-status {
  margin-top: 4px;
  font-size: 0.88rem;
  font-weight: 700;
  min-height: 1.2em;
}

.form-status-success {
  color: #0f8a4f;
}

.form-status-error {
  color: #c0392b;
}

@media (max-width: 700px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Nested Layout for CCS Headquarters & East Texas Roots Card
   ========================================================================== */

.etex-roots-nested {
  display: flex;
  align-items: center;
  gap: 32px;
}

.etex-roots-text {
  flex: 1 1 58%;
}

.etex-roots-img-wrap {
  flex: 1 1 42%;
  max-width: 360px;
  width: 100%;
}

.etex-roots-img-wrap img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid #24435f;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  display: block;
}

/* ==========================================================================
   One Operating Model — Text Banner
   ========================================================================== */

.model-banner {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-3) 100%);
  border: 1px solid rgba(112, 216, 255, 0.18);
  border-radius: 20px;
  padding: 42px 32px 36px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(7, 17, 31, 0.25);
}

.model-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 220px at 50% 0%, var(--cyan-glow), transparent 70%);
  pointer-events: none;
}

.model-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 22px;
  border: 1px solid rgba(112, 216, 255, 0.35);
  background: rgba(16, 43, 69, 0.8);
  border-radius: 6px;
  color: #cdeeff;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.model-headline {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 16px;
  font-size: clamp(1.6rem, 5.2vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0;
}

.model-headline .step {
  background-image: linear-gradient(90deg, #4fb4ff, #25c7e8);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.model-headline .step-protection {
  background-image: linear-gradient(90deg, #ffcf5c, #f5a623);
}

.model-headline .step-response {
  background-image: linear-gradient(90deg, #ff8a3d, #ff5a1f);
}

.model-headline .model-arrow {
  color: #6ee5ff;
  font-weight: 700;
  font-size: 0.85em;
}

.model-sub {
  position: relative;
  max-width: 680px;
  margin: 18px auto 0;
  color: #b9cadb;
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .model-banner {
    padding: 32px 20px 28px;
  }
  .model-headline {
    gap: 6px 10px;
  }
  .model-sub {
    font-size: 0.92rem;
  }
}

/* ==========================================================================
   Architecture Step Cards & Glyphs
   ========================================================================== */

.arch {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 36px;
}

.arch-step {
  position: relative;
  padding: 36px 28px;
  border: 1px solid rgba(37, 199, 232, 0.25);
  border-top: 5px solid var(--cyan);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 35px rgba(7, 17, 31, 0.08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.arch-step:hover {
  border-color: var(--blue);
  border-top-color: var(--blue);
  box-shadow: 0 22px 50px rgba(7, 17, 31, 0.15);
  transform: translateY(-8px);
}

.arch-graphic {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.arch-graphic img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 10px 20px rgba(7, 17, 31, 0.12));
}

.arch-step:hover .arch-graphic img {
  transform: scale(1.06);
}

.arch-title-large {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.arch-step .number {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}

/* Bottom Service Cards Glyphs */
.card-glyph {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.card-glyph img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(7, 17, 31, 0.12));
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover .card-glyph img {
  transform: scale(1.06);
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item:hover {
  border-color: #cbd8e5;
}

.accordion-item button[data-accordion] {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
}

.accordion-item .accordion-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
  transition: var(--transition);
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
  background: var(--blue);
  color: var(--white);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-item.open .accordion-panel {
  max-height: 300px;
}

.accordion-panel p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  line-height: 1.6;
}

/* ==========================================================================
   Call to Action (CTA) Banner
   ========================================================================== */

.cta {
  padding: 42px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0b1b2d 0%, #123653 100%);
  color: var(--white);
  border: 1px solid #234668;
}

.cta-with-image {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
  padding: 36px 42px;
}

.cta p {
  color: #bfd0e0;
}

.cta-visual {
  border: 1px solid rgba(112, 216, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  padding: 8px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.cta-visual img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  object-fit: cover;
}

/* ==========================================================================
   Tables, Lists & Notices
   ========================================================================== */

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.specs-table th, 
.specs-table td {
  padding: 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.specs-table th {
  width: 28%;
  background: #f5f9fd;
  font-weight: 800;
  color: var(--navy);
}

.specs-table tr:last-child th,
.specs-table tr:last-child td {
  border-bottom: 0;
}

.list {
  padding-left: 20px;
  color: var(--muted);
  text-align: left;
}

.list li {
  margin: 8px 0;
}

.notice {
  border-left: 4px solid var(--cyan);
  background: #edfaff;
  padding: 18px 20px;
  border-radius: 0 10px 10px 0;
  color: #27435a;
}

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
  background-color: #050c15;
  color: #91a5b8;
  padding: 48px 0 32px 0;
  font-size: 0.88rem;
  border-top: 1px solid #142232;
}

footer a {
  color: #dce8f5;
  text-decoration: none;
  transition: var(--transition);
}

footer a:hover {
  color: var(--cyan);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
}

.footer-title {
  color: var(--white);
  font-weight: 800;
  margin-bottom: 14px;
  font-size: 0.98rem;
}

.seo-text {
  margin-top: 20px;
  color: #667c90;
  font-size: 0.82rem;
  line-height: 1.5;
}

/* ==========================================================================
   Responsive Breakpoints & Mobile Layout
   ========================================================================== */

@media (max-width: 900px) {
  .hero-grid, .grid-3, .arch, .cta-with-image {
    grid-template-columns: 1fr;
  }
  
  .cta-with-image {
    padding: 32px 24px;
  }

  .hero-visual {
    max-width: 100%;
    justify-self: center;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .nav-container > .btn {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .etex-roots-nested {
    flex-direction: column;
    align-items: flex-start;
  }
  .etex-roots-img-wrap {
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }
  
  .section {
    padding: 58px 0;
  }
  
  .hero {
    min-height: auto;
    padding: 50px 0;
  }
  
  .hero::after {
    background-size: 92% auto, 24px 24px, 24px 24px;
  }

  .grid-2, .grid-4 {
    grid-template-columns: 1fr;
  }

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

  .logo {
    margin-right: auto;
  }

  .nav-container nav {
    margin: 0;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
    position: relative;
    z-index: 1001;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    background: var(--navy);
    padding: 24px;
    flex-direction: column;
    border-bottom: 1px solid #20384f;
    align-items: flex-start;
    z-index: 999;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  }

  .nav-links.show {
    display: flex !important;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}