/* CSS RESET & NORMALIZATION */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #f3f4f8;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #27A3D8;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #AF933F;
  text-decoration: underline;
}
ul, ol {
  margin-left: 22px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 rgba(30,40,50,0.06);
  overflow: hidden;
  margin-bottom: 24px;
}
th, td {
  padding: 16px 12px;
  text-align: left;
}
th {
  background: #f7f8fa;
  color: #1A2732;
  font-weight: 700;
}
td {
  color: #27303B;
  border-bottom: 1px solid #e7e7ea;
}
tfoot td {
  border-bottom: none;
}

/* BRAND FONTS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #1A2732;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.13;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.subheadline {
  font-size: 1.18rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #676970;
  margin-bottom: 18px;
  font-weight: 400;
}
p {
  font-size: 1rem;
  margin-bottom: 14px;
  color: #27303B;
}

/* PREMIUM COLORS AND ACCENTS */
:root {
  --color-primary: #1A2732;
  --color-secondary: #FFFFFF;
  --color-accent: #27A3D8;
  --color-gold: #AF933F;
  --color-bg: #f3f4f8;
  --color-section-bg: #fff;
  --color-shadow: rgba(26,39,50,0.09);
  --radius-lg: 14px;
  --radius-md: 10px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* --------- LUXURY PREMUIM BASE LAYOUTS ----------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: var(--color-section-bg);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px 0 var(--color-shadow);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px 0 var(--color-shadow);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid #ede6d0;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 1px 8px 0 var(--color-shadow);
  margin-bottom: 24px;
  border-left: 4px solid var(--color-gold);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 24px 18px;
  border-radius: var(--radius-md);
  box-shadow: 0 1px 6px 0 var(--color-shadow);
  min-width: 210px;
  border-left: 3px solid var(--color-gold);
  transition: box-shadow 0.22s;
}
.feature-item:hover {
  box-shadow: 0 4px 22px 0 rgba(175,147,63,0.13);
}

/* ----- HERO BANNER ----- */
.hero {
  background: linear-gradient(98deg, #fff 65%, rgba(175,147,63,0.055) 100%);
  padding: 43px 0 30px 0;
  margin-bottom: 64px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 4.5px 18px 0 var(--color-shadow);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 8px;
}
@media (max-width:768px) {
  .hero {
    padding: 30px 0 13px 0;
  }
  .hero .content-wrapper {
    gap: 6px;
  }
}

/* --------- MAIN NAVIGATION ----------- */
header {
  position: relative;
  background: #fff;
  z-index: 100;
  box-shadow: 0 2px 14px 0 rgba(26,39,50,0.07);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 20px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  border-radius: 6px;
  padding: 3px 10px;
}
.main-nav a.btn-primary {
  background: var(--color-gold);
  color: #fff;
  padding: 7px 24px;
  border-radius: 22px;
  box-shadow: 0 1px 5px 0 var(--color-shadow);
  font-size: 1.15rem;
  font-weight: 700;
  margin-left: auto;
  margin-right: 0;
  border: none;
  outline: none;
  transition: background 0.18s, box-shadow 0.18s;
}
.main-nav a.btn-primary:hover, .main-nav a.btn-primary:focus {
  background: #ceb464;
  color: #fff;
  box-shadow: 0 2px 10px 0 rgba(175,147,63,0.16);
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-gold);
  background: #f9f6ed;
}
.main-nav img {
  height: 46px;
  width: auto;
  margin-right: 16px;
}

/* Hide mobile burger by default, show on mobile */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 22px;
  top: 21px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 8px;
  padding: 7px 14px;
  z-index: 202;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-gold);
  color: #fff;
}

/* ----- MOBILE NAVIGATION SLIDE MENU ----- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(17,19,22,0.92);
  z-index: 9999;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.71,.1,.4,1);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  padding: 9px 16px;
  position: absolute;
  top: 24px;
  right: 33px;
  cursor: pointer;
  z-index: 10003;
  opacity: 0.9;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-gold);
  opacity: 1;
}
.mobile-nav {
  background: #fff;
  width: 80vw;
  max-width: 330px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 60px 28px 30px 28px;
  box-shadow: -2px 0 16px 0 rgba(30,30,30,0.13);
  overflow-y: auto;
  position: relative;
  z-index: 10002;
}
.mobile-nav a {
  font-family: var(--font-display);
  color: #1A2732;
  font-size: 1.18rem;
  padding: 15px 8px;
  border-radius: 8px;
  margin-bottom: 2px;
  font-weight: 600;
  border-left: 4px solid transparent;
  transition: background 0.16s, border-color 0.2s, color 0.2s;
}
.mobile-nav a:last-child {
  margin-bottom: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #f5ede2;
  color: var(--color-gold);
  border-left: 4px solid var(--color-gold);
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 13px;
  }
}
@media (max-width: 950px) {
  .main-nav {
    gap: 9px;
  }
}
@media (max-width: 850px) {
  .main-nav {
    gap: 6px;
    padding-left: 14px;
    padding-right: 14px;
  }
  .main-nav img {
    height: 36px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
    pointer-events: none !important;
  }
}


/* ------- BUTTONS --------- */
.btn-primary,
.btn-secondary {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  outline: none;
  border-radius: 32px;
  padding: 12px 32px;
  font-size: 1.15rem;
  cursor: pointer;
  transition: background 0.19s, color 0.15s, box-shadow 0.16s, transform 0.17s;
  text-align: center;
  margin-bottom: 8px;
  box-shadow: 0 2px 10px 0 var(--color-shadow);
}
.btn-primary {
  background: var(--color-gold);
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #1A2732;
  color: #fff;
  box-shadow: 0 3px 18px 0 rgba(175,147,63,0.19);
  transform: translateY(-2px) scale(1.02);
}
.btn-secondary {
  background: #fff;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-gold);
  color: #fff;
  transform: translateY(-2px) scale(1.02);
}

/* Others (for cookie etc) */
.btn-tertiary {
  background: #fff;
  color: var(--color-primary);
  border: 1.5px solid #aaa;
  border-radius: 26px;
  font-size: 1rem;
  padding: 10px 22px;
  font-family: var(--font-display);
  margin: 6px;
  cursor: pointer;
  transition: background 0.16s, color 0.14s, border 0.17s;
}
.btn-tertiary:hover, .btn-tertiary:focus {
  background: #faf2d8;
  color: var(--color-gold);
  border: 1.5px solid var(--color-gold);
}


/* -------- SPECIAL COMPONENTS --------- */
.pricing-table table {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 1px 6px 0 var(--color-shadow);
}
.pricing-table th {
  color: var(--color-gold);
  font-size: 1.08rem;
  border-bottom: 2.3px solid #efe1be;
}
.pricing-table td {
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, sans-serif;
}

.rating-summary {
  color: var(--color-gold);
  font-weight: 700;
  margin-top: -6px;
  margin-bottom: 12px;
  font-size: 1.11rem;
}

.contact-short-info p {
  line-height: 2;
  font-size: 1.06rem;
  margin-top: 14px;
}
.contact-short-info img {
  vertical-align: middle;
  margin-right: 9px;
  width: 20px;
  height: 20px;
}

/* ---------------- FOOTER ---------------- */
footer {
  background: #101A23;
  color: #fff;
  padding: 36px 0 24px 0;
  margin-top: 68px;
  font-family: var(--font-display);
  box-shadow: 0 -2px 22px 0 var(--color-shadow);
  border-top: 2px solid #af933f30;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-bottom: 13px;
}
.footer-nav a {
  color: #ecd585;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.04rem;
  padding: 4px 10px;
  transition: color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-gold);
}
.footer-contact {
  text-align: center;
  font-size: 0.97rem;
  color: #e6e1ce;
  margin-top: 3px;
}

/* -------- TESTIMONIALS --------- */
.testimonials {
  background: linear-gradient(to right, #f7f6ef 74%, #fff 100%);
  border-radius: var(--radius-lg);
  box-shadow: 0 3px 16px 0 var(--color-shadow);
  margin-bottom: 50px;
}
.testimonial-card {
  background: #fff;
  border-left: 4px solid var(--color-gold);
  color: #1A2732;
  box-shadow: 0 1px 8px 0 var(--color-shadow);
  font-family: var(--font-body);
  font-size: 1.11rem;
  font-weight: 400;
  margin-bottom: 20px;
  align-items: flex-start;
  gap: 16px;
}
.testimonial-card:last-child {
  margin-bottom: 0;
}
.testimonial-meta {
  color: var(--color-gold);
  font-size: 1.01rem;
  font-weight: 700;
  letter-spacing: 0.013em;
  margin-top: 3px;
}

/* --------- LAYOUT FLEX - Services, Features, Cards --------- */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 12px;
}

.services-list ul, .benefits ul, .included-features ul, .special-features ul, .local-features ul {
  list-style: none;
  padding: 0;
  margin-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
}
.services-list ul li, .benefits ul li, .included-features ul li, .special-features ul li, .local-features ul li {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 1.07rem;
  min-width: 220px;
  flex: 1 1 220px;
  box-shadow: 0 1px 6px 0 var(--color-shadow);
  margin-bottom: 8px;
  border-left: 3px solid var(--color-gold);
}
.services-list ul li h3 { margin-bottom: 3px; color:var(--color-gold); font-weight:700;text-shadow:0 1px 2px #e7dec1;}


/* -------- CTA SECTIONS --------- */
.cta-section {
  background: linear-gradient(90deg, #f9efe5 55%, #f5f5f5 100%);
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
  padding: 36px 18px;
  box-shadow: 0 2px 16px 0 var(--color-shadow);
  text-align: center;
}
.cta-section h2 {
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 2.02rem;
  margin-bottom: 15px;
}
.cta-section .btn-primary {
  margin-top: 8px;
}

/****** FORMS & MISC ******/
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1.08rem;
  border-radius: 8px;
  border: 1.5px solid #bbb;
  padding: 11px 16px;
  margin-bottom: 13px;
  background: #fff;
  color: #1A2732;
  transition: border 0.19s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border: 1.5px solid var(--color-gold);
  background: #fffcf5;
}

/****** MODAL (COOKIE) OVERLAYS ******/
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; width: 100vw;
  background: #fff;
  color: #1A2732;
  box-shadow: 0 -1px 12px 0 rgba(60, 44, 10, 0.08);
  border-top: 3px solid var(--color-gold);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 21px 12px 15px 12px;
  font-size: 1.08rem;
  animation: slideUpCookie 0.33s cubic-bezier(0.65,0.05,0.36,1);
  transition: transform .25s;
}
@keyframes slideUpCookie {
  from { transform: translateY(160px); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}
.cookie-banner .btn-primary, .cookie-banner .btn-tertiary {
  margin-bottom: 2px;
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(19,16,12,0.69);
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s;
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px 22px 24px;
  box-shadow: 0 5px 28px 0 rgba(175,147,63,0.22);
  width: 95vw;
  max-width: 410px;
  animation: fadeInModal 0.25s;
  font-size: 1.03rem;
  position: relative;
}
@keyframes fadeInModal {
  from { opacity:0; transform:scale(0.95); }
  to { opacity:1; transform:scale(1); }
}
.cookie-modal h3 {
  color: var(--color-gold);
  font-family: var(--font-display);
  margin-bottom: 12px;
  font-size: 1.25rem;
}
.cookie-modal label {
  font-size: 1.08rem;
  font-family: var(--font-body);
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ece5c7;
}
.cookie-modal .cookie-btn-group {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal .close-cookie-modal {
  position: absolute; right: 14px; top: 11px;
  background: none; border: none;
  font-size: 1.5rem; color: #aaa;
  cursor: pointer;
  transition: color .14s;
  z-index: 2;
}
.cookie-modal .close-cookie-modal:hover, .cookie-modal .close-cookie-modal:focus {
  color: var(--color-gold);
}

/* Checkbox custom toggle (for cookie settings) */
.cookie-toggle {
  appearance: none;
  width: 32px; height: 19px;
  border-radius: 12px;
  background: #EADCBB;
  outline: none;
  position: relative;
  cursor: pointer;
  transition: background 0.14s;
  margin-right: 8px;
}
.cookie-toggle:checked {
  background: var(--color-gold);
}
.cookie-toggle::before {
  content: '';
  display: block;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 2px; top: 1.5px;
  transition: left 0.16s;
  box-shadow: 0 1px 4px rgba(30,30,30,0.12);
}
.cookie-toggle:checked::before {
  left: 14px;
}

/****** SPECIAL MISC COMPONENTS ******/
.confirmation, .legal, .gdpr, .cookie-policy, .terms {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 3px 16px 0 var(--color-shadow);
  margin-bottom: 50px;
  padding: 38px 22px;
}
.confirmation h1 {
  color: var(--color-gold);
  margin-bottom: 18px;
}

/****** RESPONSIVE DESIGN ******/
@media (max-width: 1099px) {
  .container {
    max-width: 920px;
    padding-left: 14px; padding-right: 14px;
  }
}
@media (max-width: 850px) {
  .container {
    max-width: 680px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 97vw;
    padding-left: 6px;
    padding-right: 6px;
  }
  .section, .cta-section, .confirmation, .legal, .gdpr, .cookie-policy, .terms {
    padding: 21px 6px;
    margin-bottom: 40px;
    border-radius: 7px;
  }
  .hero {
    padding: 14px 0 6px 0;
    margin-bottom: 26px;
  }
  .features .feature-grid {
    flex-direction: column;
    gap: 19px;
  }
  .services-list ul, .benefits ul, .included-features ul, .special-features ul, .local-features ul {
    flex-direction: column;
    gap: 9px;
  }
  .about-section ul, .cta-section .contact-short-info, .footer-nav {
    gap: 10px !important;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .card-container {
    flex-direction: column;
    gap: 12px;
  }
  .content-grid {
    flex-direction: column;
    gap: 13px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

/* SMALLEST BREAKPOINTS */
@media (max-width: 480px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.27rem; }
  .btn-primary, .btn-secondary {
    font-size: 1rem;
    padding: 10px 15px;
  }
  .main-nav img {
    height: 27px;
  }
}

/***** LUX GOLD ACCENTS FOR HR AND DECORATIVE LINES *****/
hr, .gold-line {
  border: none;
  border-bottom: 2.5px solid var(--color-gold);
  margin: 32px 0 18px 0;
  width: 56px;
}

/***** HIGHLIGHTS, BADGES, ETC. *****/
.badge-gold {
  display: inline-block;
  font-size: 0.92rem;
  padding: 3px 11px;
  background: var(--color-gold);
  color: #fff;
  border-radius: 17px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  vertical-align: middle;
  margin-left: 7px;
}

/***** SHADOWS & TRANSITIONS FOR CARDS / INTERACTIVE ELEMENTS *****/
.card, .feature-item, .testimonial-card, .section, .cta-section, .confirmation, .cookie-modal {
  transition: box-shadow 0.2s, border-color 0.19s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover {
  box-shadow: 0 4px 22px 0 rgba(175,147,63,0.11);
  border-color: var(--color-gold);
}

/***** LINKS AND MICRO-INTERACTIONS *****/
a, .btn-primary, .btn-secondary, .btn-tertiary {
  transition: color 0.19s, background 0.18s, border 0.18s, box-shadow 0.18s;
}

/***** SPACING CHECK (layout enforcing paddings & gaps) *****/
.section, .card, .feature-item, .testimonial-card, .cta-section, .confirmation, .legal, .gdpr, .cookie-policy, .terms {
  margin-bottom: 40px;
}
.card:not(:last-child), .feature-item:not(:last-child), .testimonial-card:not(:last-child), .services-list ul li:not(:last-child) {
  margin-bottom: 20px;
}

/***** Z-INDEX MANAGEMENT *****/
header { z-index: 1000; }
.mobile-menu { z-index: 9999; }
.cookie-banner { z-index: 10000; }
.cookie-modal-overlay { z-index: 11000; }

/***** PRINT STYLES (hide navigation/cookie for print) *****/
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal-overlay, footer {
    display: none !important;
  }
}

/******* FADE/SLIDE ANIMATIONS FOR INTERACTION ******/
.fade-in { animation: fadeInModal 0.32s; }
.slide-in-right { animation: slideInRight 0.29s; }
@keyframes slideInRight { from { transform: translateX(50px); opacity:0;} to { transform: translateX(0); opacity:1;} }

/******* ACCESSIBILITY: HIGH CONTRAST FOR IMPORTANT INFO ******/
strong, b {
  color: #1A2732;
  font-weight: 700;
}

/***** HIDE/SHOW CLASSES (FOR JS) *****/
.hidden { display: none !important; }

/**** CRITICAL: NO GRID, ONLY FLEX ****/
/* All layout containers above use flexbox only */
