/* ==========================================================================
   TOPSCOUTEDITION - BRANDED ROUTE NOTEBOOK SYSTEM
   Palette:
   Primary Crimson: #9E1B32
   Forest Green:    #1B4D3E
   Gold Accent:     #C59B27
   Midnight Slate:  #0F172A
   Snow Paper:      #FAF8F5
   Tan Light:       #F4EFE6
   Border Tan:      #E2D9CC
   Status Known:    #15803D (Emerald)
   Status Pending:  #C2410C (Burnt Amber)
   ========================================================================== */

:root {
  --bg-paper: #FAF8F5;
  --text-dark: #0F172A;
  --brand-crimson: #9E1B32;
  --brand-forest: #1B4D3E;
  --brand-gold: #C59B27;
  --pale-tan: #E2D9CC;
  --tan-light: #F4EFE6;
  --white: #FFFFFF;
  --status-known: #15803D;
  --status-pending: #C2410C;
  --shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 6px 16px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 10px 25px rgba(15, 23, 42, 0.20);
  --border-radius-card: 12px;
  --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-heading: "Trebuchet MS", "Lucida Sans Unicode", "Segoe UI", sans-serif;
}

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

body.route-notebook-theme {
  background-color: var(--bg-paper);
  color: var(--text-dark);
  font-family: var(--font-main);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--brand-crimson);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover, a:focus {
  color: var(--brand-forest);
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  background-color: var(--text-dark);
  color: var(--bg-paper);
  position: relative;
  z-index: 100;
  box-shadow: var(--shadow-md);
  border-bottom: 3px solid var(--brand-gold);
}

.header-banner-strip {
  background-color: var(--brand-crimson);
  color: var(--white);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 7px 16px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-icon {
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--brand-gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 16px;
}

.nav-link {
  color: var(--bg-paper);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background-color 0.2s, color 0.2s;
}

.nav-link:hover, .nav-link:focus {
  background-color: rgba(250, 248, 245, 0.12);
  color: var(--brand-gold);
  text-decoration: none;
}

.nav-link.active {
  background-color: var(--brand-crimson);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--brand-gold);
  border-radius: 6px;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.hamburger-bar {
  width: 22px;
  height: 2px;
  background-color: var(--white);
}

/* --------------------------------------------------------------------------
   HERO & PAGE TITLES
   -------------------------------------------------------------------------- */
main {
  flex: 1;
}

.hero-section {
  background-color: var(--tan-light);
  border-bottom: 3px dashed var(--pale-tan);
  padding: 48px 24px;
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background-color: var(--brand-forest);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #334155;
  margin-bottom: 28px;
}

.hero-snapshot-card {
  background-color: var(--white);
  border: 2px solid var(--pale-tan);
  border-top: 4px solid var(--brand-crimson);
  border-radius: var(--border-radius-card);
  padding: 18px 24px;
  max-width: 620px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.snapshot-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 8px;
}

.snapshot-label {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--brand-crimson);
  text-transform: uppercase;
}

.snapshot-value {
  font-weight: 800;
  font-size: 0.95rem;
  background-color: var(--tan-light);
  color: var(--text-dark);
  padding: 3px 10px;
  border-radius: 4px;
  border: 1px solid var(--pale-tan);
}

.snapshot-note {
  font-size: 0.85rem;
  color: #475569;
  text-align: left;
}

.page-title-section {
  background-color: var(--tan-light);
  border-bottom: 3px dashed var(--pale-tan);
  padding: 38px 24px;
}

.page-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.page-subtitle {
  font-size: 1.05rem;
  color: #334155;
  max-width: 800px;
}

/* --------------------------------------------------------------------------
   LAYOUT CONTAINERS & NOTEBOOK CARDS
   -------------------------------------------------------------------------- */
.section-container {
  max-width: 1200px;
  margin: 36px auto;
  padding: 0 24px;
}

.notebook-card {
  background-color: var(--white);
  border: 2px solid var(--pale-tan);
  border-radius: var(--border-radius-card);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  margin-bottom: 24px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--tan-light);
  padding-bottom: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

.card-header h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-dark);
}

.section-intro {
  margin-bottom: 20px;
  color: #334155;
}

.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* --------------------------------------------------------------------------
   LEGAL PAGES & CONTACT DETAILS
   -------------------------------------------------------------------------- */
.legal-card h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--brand-crimson);
  margin-top: 24px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--tan-light);
  padding-bottom: 4px;
}

.legal-card h2:first-of-type {
  margin-top: 0;
}

.legal-card h3 {
  font-size: 1.1rem;
  color: var(--brand-forest);
  margin-top: 18px;
  margin-bottom: 8px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
  background-color: var(--tan-light);
  padding: 18px;
  border-radius: 8px;
  border: 1px solid var(--pale-tan);
}

.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-detail-item strong {
  font-size: 0.85rem;
  color: var(--brand-crimson);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-detail-item span {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   KNOWN VS PENDING LEGEND
   -------------------------------------------------------------------------- */
.legend-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
}

.legend-box {
  padding: 20px;
  border-radius: 8px;
  border-left: 6px solid;
}

.legend-box.status-known {
  background-color: #F0FDF4;
  border-color: var(--status-known);
}

.legend-box.status-pending {
  background-color: #FFF7ED;
  border-color: var(--status-pending);
}

.legend-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pill-known {
  background-color: var(--status-known);
  color: var(--white);
}

.pill-pending {
  background-color: var(--status-pending);
  color: var(--white);
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--white);
}

/* --------------------------------------------------------------------------
   MAP DIAGRAM & ROUTE BOARDS
   -------------------------------------------------------------------------- */
.map-wrapper {
  background-color: var(--white);
  border: 2px solid var(--pale-tan);
  border-radius: var(--border-radius-card);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.map-title-bar {
  margin-bottom: 16px;
}

.map-title-bar h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--text-dark);
}

.map-graphic-container {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--pale-tan);
  border-radius: 8px;
  background-color: var(--bg-paper);
}

.route-diagram-img {
  width: 100%;
  height: auto;
  display: block;
  min-width: 600px;
}

.route-board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.routes-list-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.route-card {
  background-color: var(--bg-paper);
  border: 2px solid var(--pale-tan);
  border-radius: 10px;
  padding: 16px 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.route-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.route-card.status-border-known {
  border-left: 6px solid var(--status-known);
}

.route-card.status-border-pending {
  border-left: 6px solid var(--status-pending);
}

.route-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.route-date {
  font-weight: 700;
  font-size: 0.85rem;
  color: #475569;
}

.route-matchup {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.confirmed-text {
  color: var(--status-known);
  background-color: #DCFCE7;
  padding: 2px 8px;
  border-radius: 4px;
}

.pending-text {
  color: var(--text-dark);
  background-color: var(--tan-light);
  padding: 2px 8px;
  border-radius: 4px;
}

.vs-badge {
  font-size: 0.75rem;
  background-color: var(--brand-crimson);
  color: var(--white);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 800;
}

.route-notes {
  font-size: 0.85rem;
  color: #334155;
  border-top: 1px dashed var(--pale-tan);
  padding-top: 8px;
}

/* --------------------------------------------------------------------------
   FILTER TOOLBAR
   -------------------------------------------------------------------------- */
.filter-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  background-color: var(--white);
  padding: 14px 20px;
  border: 2px solid var(--pale-tan);
  border-radius: var(--border-radius-card);
}

.filter-label {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.filter-btn {
  background-color: var(--tan-light);
  border: 1px solid var(--pale-tan);
  color: var(--text-dark);
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover, .filter-btn:focus {
  background-color: var(--pale-tan);
}

.filter-btn.active {
  background-color: var(--brand-crimson);
  color: var(--white);
  border-color: var(--brand-crimson);
}

/* --------------------------------------------------------------------------
   STANDINGS TABLES & GROUP STATUS
   -------------------------------------------------------------------------- */
.groups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.group-card {
  padding: 20px;
}

.group-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.group-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
}

.status-tag {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
}

.status-completed {
  background-color: var(--brand-forest);
  color: var(--white);
}

.status-remaining {
  background-color: var(--tan-light);
  color: var(--text-dark);
  border: 1px solid var(--pale-tan);
}

.badge-q1 {
  background-color: #DCFCE7;
  color: #15803D;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 4px;
  display: inline-block;
}

.badge-q2 {
  background-color: #E0F2FE;
  color: #0369A1;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 4px;
  display: inline-block;
}

.badge-q3 {
  background-color: #FEF3C7;
  color: #B45309;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 4px;
  display: inline-block;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.standings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  text-align: center;
}

.standings-table th, .standings-table td {
  padding: 8px 6px;
  border-bottom: 1px solid var(--tan-light);
}

.standings-table th {
  background-color: var(--tan-light);
  color: var(--text-dark);
  font-weight: 800;
}

.standings-table td:first-child, .standings-table th:first-child {
  text-align: left;
}

.standings-table tr.qualified-row-1st {
  background-color: rgba(220, 252, 231, 0.3);
}

.standings-table tr.qualified-row-2nd {
  background-color: rgba(224, 242, 254, 0.3);
}

.standings-table tr.qualified-row-3rd {
  background-color: rgba(254, 243, 199, 0.3);
}

/* --------------------------------------------------------------------------
   STYLED LISTS & BUTTONS
   -------------------------------------------------------------------------- */
.styled-list {
  list-style: none;
  margin-top: 12px;
}

.styled-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}

.styled-list li::before {
  content: "■";
  color: var(--brand-crimson);
  position: absolute;
  left: 0;
  font-size: 0.85rem;
}

.badge-tag {
  background-color: var(--tan-light);
  color: var(--brand-crimson);
  border: 1px solid var(--pale-tan);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 800;
}

.btn-primary {
  display: inline-block;
  background-color: var(--brand-crimson);
  color: var(--white);
  font-weight: 800;
  padding: 11px 22px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover, .btn-primary:focus {
  background-color: #7D1527;
  color: var(--white);
  text-decoration: none;
}

.btn-secondary {
  display: inline-block;
  background-color: var(--tan-light);
  color: var(--text-dark);
  border: 1px solid var(--pale-tan);
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background-color 0.2s;
}

.btn-secondary:hover, .btn-secondary:focus {
  background-color: var(--pale-tan);
  color: var(--text-dark);
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   GUIDE STEPS
   -------------------------------------------------------------------------- */
.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}

.step-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  background-color: var(--brand-crimson);
  color: var(--white);
  font-weight: 800;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

/* --------------------------------------------------------------------------
   CONTACT FORM & STYLES
   -------------------------------------------------------------------------- */
.styled-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group label {
  font-weight: 800;
  font-size: 0.9rem;
}

.required-star {
  color: var(--brand-crimson);
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--pale-tan);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  background-color: var(--bg-paper);
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-crimson);
  background-color: var(--white);
}

.form-alert {
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 16px;
  font-weight: 700;
}

.form-alert.success {
  background-color: #DCFCE7;
  color: var(--status-known);
  border: 1px solid var(--status-known);
}

.form-alert.error {
  background-color: #FEE2E2;
  color: var(--brand-crimson);
  border: 1px solid var(--brand-crimson);
}

.hidden {
  display: none !important;
}

.mt-4 {
  margin-top: 1.5rem;
}

/* --------------------------------------------------------------------------
   FOOTER & DISCLAIMERS
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--text-dark);
  color: var(--bg-paper);
  margin-top: auto;
  padding-top: 44px;
  border-top: 4px solid var(--brand-gold);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 30px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--pale-tan);
  margin-bottom: 16px;
}

.footer-address {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #94A3B8;
  background-color: rgba(255, 255, 255, 0.04);
  padding: 12px 16px;
  border-radius: 6px;
  border-left: 3px solid var(--brand-gold);
}

.footer-email-link {
  color: var(--brand-gold);
  text-decoration: underline;
}

.footer-col h4 {
  font-size: 1rem;
  color: var(--brand-gold);
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(197, 155, 39, 0.3);
  padding-bottom: 6px;
}

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

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

.footer-col ul a {
  color: var(--bg-paper);
  font-size: 0.85rem;
}

.footer-col ul a.active {
  color: var(--brand-gold);
  font-weight: bold;
}

.footer-disclaimer-strip {
  background-color: #0B111E;
  padding: 22px 0;
  font-size: 0.75rem;
  color: #64748B;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.disclaimer-text {
  margin-bottom: 8px;
  line-height: 1.5;
}

.copyright-text {
  color: var(--brand-gold);
  font-weight: 800;
}

/* --------------------------------------------------------------------------
   CONSENT POPUP BANNER
   -------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--bg-paper);
  border-top: 4px solid var(--brand-crimson);
  padding: 20px 24px;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.35);
  z-index: 1000;
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text-box {
  max-width: 750px;
}

.cookie-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--brand-gold);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cookie-content p {
  font-size: 0.85rem;
  color: #CBD5E1;
}

.cookie-content a {
  color: var(--brand-gold);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-cookie {
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 800;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.btn-cookie.btn-primary {
  background-color: var(--brand-crimson);
  color: var(--white);
}

.btn-cookie.btn-primary:hover {
  background-color: #7D1527;
}

.btn-cookie.btn-secondary {
  background-color: var(--brand-forest);
  color: var(--white);
}

.btn-cookie.btn-secondary:hover {
  background-color: #12362B;
}

.btn-outline {
  background: transparent;
  color: var(--bg-paper);
  border: 1px solid var(--pale-tan);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* --------------------------------------------------------------------------
   RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */

@media (max-width: 1200px) {
  .section-container {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    padding: 20px;
    border-bottom: 3px solid var(--brand-crimson);
    box-shadow: var(--shadow-md);
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 12px;
  }

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

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

  .hero-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 30px 16px;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .notebook-card {
    padding: 18px;
  }

  .route-matchup {
    font-size: 0.95rem;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
}