/* =========================================================
   0. RESET & BASE STYLES
   =========================================================*/
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,
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, main,
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 {
  font-size: 16px;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #222;
  background: #FFF;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #16496B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F4B028;
}
button, .cta-btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 16px;
}

/* Hide elements accessibly */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* =========================================================
   1. TYPOGRAPHY
   =========================================================*/
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: #16496B;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #16496B;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #F4B028;
  letter-spacing: 0.3px;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}
p, .body {
  margin-bottom: 16px;
  color: #2d2d2d;
  font-size: 1rem;
}
blockquote {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  font-style: italic;
  color: #16496B;
  margin-bottom: 8px;
}
cite {
  font-size: 1rem;
  color: #666;
  font-style: normal;
}

/* Artistic-creative font accents */
.hero h1, .big-cta h2 {
  font-family: 'Montserrat', cursive, Arial, sans-serif;
  letter-spacing: -1.5px;
  text-shadow: 2px 2px 0 #f6dea7, 0 3px 10px rgba(22,73,107,0.11);
}

/* =========================================================
   2. COLOR VARIABLES (w/ fallbacks)
   =========================================================*/
:root {
  --color-primary: #16496B;
  --color-secondary: #F4B028;
  --color-accent: #FFFFFF;
  --color-grey-bg: #F8F8F8;
  --color-dark: #183147;
  --color-link-hover: #db8d12;
  --color-focus: #3333cc;
  --radius: 20px;
  --shadow-card: 0 4px 20px rgba(22,73,107,0.07), 0 1.5px 8px rgba(244,176,40,0.06);
}

/* =========================================================
   3. LAYOUT CONTAINERS & SPACING
   =========================================================*/
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
@media (min-width: 700px) {
  .content-wrapper.grid, .content-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
  }
}

.card-container, .profile-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  min-width: 230px;
  max-width: 480px;
  border-left: 5px solid var(--color-secondary);
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 32px rgba(244,176,40,0.10), 0 5px 16px rgba(22,73,107,0.12);
  transform: translateY(-2px) scale(1.01);
}

.feature-item, .feature-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background-color: var(--color-grey-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 24px 20px;
  margin-bottom: 20px;
  min-width: 220px;
  flex: 1 1 200px;
  position: relative;
  transition: box-shadow 0.2s, background 0.2s, transform 0.2s;
}
.feature-block:hover {
  box-shadow: 0 6px 24px rgba(22,73,107,0.09), 0 5px 24px rgba(244,176,40,0.11);
  background: #faf1dc;
  transform: translateY(-2px) scale(1.01);
}

@media (max-width: 768px) {
  .content-wrapper.grid, .content-grid, .card-container, .profile-list {
    flex-direction: column;
    gap: 20px;
  }
  .feature-block, .testimonial-card {
    min-width: 0;
    width: 100%;
  }
}

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 16px 20px;
  margin-bottom: 16px;
}

.profile-list {
  gap: 20px;
  flex-wrap: wrap;
}
.profile-item {
  background: #fff8e1;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: 0 2px 10px rgba(244,176,40,0.12);
  min-width: 180px;
  flex: 1 1 160px;
  text-align: left;
}

.faq-link {
  margin-top: 12px;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.faq-link a {
  color: var(--color-secondary);
  font-weight: 700;
  position: relative;
  transition: color 0.18s;
}
.faq-link a:hover {
  color: var(--color-primary);
}

.big-cta {
  background: linear-gradient(95deg, #FFF8E0 75%, #F4B028 100%);
  border-radius: var(--radius);
  margin-bottom: 60px;
  padding: 40px 20px 32px 20px;
  box-shadow: 0 8px 40px rgba(244,176,40,0.07);
  text-align: center;
}
.big-cta h2 {
  color: #16496B;
  font-size: 2.1rem;
  margin-bottom: 18px;
}
.big-cta p {
  color: #242424;
  margin-bottom: 24px;
}

.cta-btn {
  display: inline-block;
  padding: 12px 32px;
  font-size: 1.15rem;
  border-radius: 999px;
  margin-top: 4px;
  line-height: 1.2;
}
.cta-btn.primary {
  background: var(--color-primary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 12px rgba(22,73,107,0.07);
  border: 2px solid var(--color-primary);
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: var(--color-secondary);
  color: #16496B;
  border-color: var(--color-secondary);
  outline: none;
  box-shadow: 0 4px 16px rgba(244,176,40,0.13);
}
.cta-btn.secondary {
  background: #fff;
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
  font-family: 'Montserrat', Arial, sans-serif;
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  color: var(--color-primary);
  background: var(--color-secondary);
  outline: none;
}

/* Hero Section */
.hero {
  min-height: 330px;
  background: linear-gradient(75deg, #FFF 62%, #F4B028 110%) no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 0 32px;
  text-align: left;
  border-bottom-left-radius: 120px 60px;
  border-bottom-right-radius: 80px 30px;
  box-shadow: 0 2px 30px 0 rgba(244,176,40,0.08);
  position: relative;
}
.hero .container {
  align-items: flex-start;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 660px;
}
@media (max-width: 700px) {
  .hero {
    min-height: 220px;
    padding-top: 32px;
    padding-bottom: 18px;
    border-radius: 0 0 48px 24px;
    text-align: left;
  }
  .hero .content-wrapper {
    max-width: 100%;
  }
}

/* =========================================================
   4. HEADER & NAVIGATION (DESKTOP & MOBILE)
   =========================================================*/
header {
  background: #fff;
  box-shadow: 0 2px 14px 0 rgba(22,73,107,0.03);
  padding: 0;
  z-index: 50;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}
header a img {
  height: 42px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
header nav a {
  padding: 4px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--color-primary);
  font-size: 1rem;
  position: relative;
  transition: color 0.16s;
}
header nav a:hover, header nav a:focus {
  color: var(--color-secondary);
}
header .cta-btn {
  margin-left: 28px;
}
.mobile-menu-toggle {
  background: transparent;
  font-size: 2rem;
  color: var(--color-primary);
  border: none;
  display: none;
  margin-left: 24px;
  padding: 2px 10px;
  line-height: 1.1;
  transition: color 0.15s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-focus);
}

@media (max-width: 940px) {
  header nav {
    display: none;
  }
  header .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ------------------- MOBILE MENU off-canvas ---------------------*/
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, #fff 75%, #F4B028 130%);
  box-shadow: 0 0 100px rgba(22,73,107,0.08);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px 24px 24px;
  transform: translateX(-105vw);
  transition: transform 0.33s cubic-bezier(0.7, 0, 0.3, 1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #16496B;
  font-size: 2.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  align-self: flex-end;
  margin-bottom: 28px;
  cursor: pointer;
  padding: 0 10px;
  line-height: 1.1;
  transition: color 0.15s;
}
.mobile-menu-close:focus {
  outline: 2px solid var(--color-focus);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 18px;
}
.mobile-nav a {
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 14px 4px 10px 2px;
  color: var(--color-primary);
  border-radius: 6px;
  transition: background 0.19s, color 0.16s;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-secondary);
  background: rgba(244,176,40,0.09);
}

@media (min-width: 941px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* Hamburger overlay backdrop animation (not in HTML, workaround for focus) */
body.menu-open {
  overflow: hidden;
}

/* =========================================================
   5. FOOTER
   =========================================================*/
footer {
  background: #183147;
  color: #fff;
  padding: 32px 0 16px 0;
  width: 100%;
  margin-top: 64px;
  box-shadow: 0 -3px 28px rgba(22,73,107,0.05);
}
footer .container {
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
footer nav {
  display: flex;
  gap: 18px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
footer nav a {
  color: #fff;
  font-size: 1rem;
  opacity: 0.93;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.18s, opacity 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--color-secondary);
  opacity: 1;
  text-decoration: underline;
}
footer .footer-contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 1.05rem;
  color: #fff;
  opacity: 0.86;
}
footer .footer-contact img {
  height: 18px;
  margin-right: 2px;
  vertical-align: middle;
}
footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.06rem;
  font-weight: 400;
  margin-top: 14px;
  color: #fff;
  opacity: 0.9;
}
footer .footer-brand img {
  height: 32px;
}
@media (max-width: 600px) {
  footer {
    padding: 18px 0 12px 0;
  }
  footer .footer-brand img {
    height: 28px;
  }
}

/* =========================================================
   6. SPECIAL COMPONENTS/UTILITIES
   =========================================================*/
/* Card for About, Services, Pricing, etc. (re-use .feature-block) */

/* Contact details - artistic icon-list block */
.contact-details .content-wrapper,
.location-services .content-wrapper {
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.contact-info-block ul, .contact-support-tips ul {
  margin-bottom: 0;
}
.contact-info-block img {
  height: 20px;
  vertical-align: middle;
  margin-right: 7px;
}
@media (max-width: 768px) {
  .contact-details .content-wrapper,
  .location-services .content-wrapper {
    flex-direction: column;
    gap: 26px;
  }
  .contact-info-block, .contact-support-tips {
    width: 100%;
  }
}

/* Strong for creative emphasis */
strong {
  color: var(--color-secondary);
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}

address {
  font-style: normal;
  font-size: 1rem;
  display: inline;
}

/* Artistic accents on section headings */
h2 {
  border-left: 8px solid var(--color-secondary);
  padding-left: 14px;
  background: linear-gradient(90deg, #fff 90%, #f6dea7 140%);
  border-radius: 4px 22px 16px 4px;
  display: inline-block;
  box-decoration-break: clone;
}

/* Legal sections: styled readable */
.legal {
  background: #fafafa;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-card);
  padding: 32px 16px 48px 16px;
}
.legal h1 {
  color: #16496B;
  font-size: 2.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 18px;
  letter-spacing: -1px;
}
.legal h2 {
  font-size: 1.35rem;
  margin-top: 20px;
  color: #F4B028;
}
.legal ul, .legal ol {
  margin: 16px 0 16px 1.5em;
}

/* FAQ accordion styling - artistic bubble effect */
.faq-accordion .faq-item {
  border-left: 6px solid var(--color-primary);
  background: #fffdf7;
  padding-bottom: 14px;
}

/* =========================================================
   7. BUTTONS, FORMS, INTERACTIONS
   =========================================================*/
button, .cta-btn {
  cursor: pointer;
  border: none;
}
button:focus, .cta-btn:focus {
  outline: 2px solid var(--color-focus);
}
/* Only for touch targets on mobile menu and cookie banner */
button, .mobile-menu-close, .mobile-menu-toggle {
  -webkit-tap-highlight-color: rgba(244,176,40,0.37);
}

/* =========================================================
   8. COOKIE CONSENT BANNER & MODAL
   =========================================================*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9998;
  width: 100vw;
  background: #fff8e8;
  box-shadow: 0 -4px 32px rgba(244,176,40,0.13);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 30px 20px 22px;
  font-size: 1.04rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #222;
  transition: transform 0.33s cubic-bezier(0.7,0,0.3,1), opacity 0.2s;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 999px;
  padding: 10px 20px;
  border: 2px solid var(--color-primary);
  background: var(--color-primary);
  color: #fff;
  margin-left: 0;
  transition: background 0.15s, color 0.15s, border 0.16s;
}
.cookie-btn.accept {
  background: var(--color-secondary);
  color: #183147;
  border-color: var(--color-secondary);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #fff;
  color: var(--color-secondary);
}
.cookie-btn.reject {
  background: #fff;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #ecd79c;
  color: var(--color-primary);
}
.cookie-btn.settings {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid #b1bbc6;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 17px 12px 13px 11px;
    font-size: 0.99rem;
  }
  .cookie-banner__actions {
    gap: 9px;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 12000;
  background: rgba(22,73,107,0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fffefb;
  border-radius: 22px;
  box-shadow: 0 6px 36px rgba(22,73,107,0.15), 0 3px 15px rgba(244,176,40,0.13);
  padding: 36px 28px 24px 28px;
  min-width: 286px;
  max-width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #16496B;
  animation: cookie-pop 0.33s cubic-bezier(0.8,0,0.46,1);
}
.cookie-modal h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 11px;
  font-size: 1.09rem;
}
.cookie-modal-category input[type='checkbox'] {
  width: 20px;
  height: 20px;
  accent-color: var(--color-secondary);
}
.cookie-modal-category .always {
  font-style: italic;
  color: #888;
  font-size: 1rem;
}
.cookie-modal__actions {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-modal__actions .cookie-btn {
  min-width: 90px;
}
@media (max-width: 480px) {
  .cookie-modal {
    padding: 22px 3vw 16px 3vw;
    font-size: 0.97rem;
  }
}
@keyframes cookie-pop {
  0% { transform: scale(0.7); opacity: 0; }
  65% { transform: scale(1.05); opacity: 0.9; }
  100% { transform: scale(1); opacity: 1; }
}

/* =========================================================
   9. ARTISTIC DECORATIVE ELEMENTS
   =========================================================*/
/* Slightly quirky colored borders/corners on cards */
.feature-block::before {
  content: '';
  display: block;
  position: absolute;
  top: -10px; left: -10px;
  width: 42px; height: 42px;
  background: rgba(244,176,40,0.13);
  border-top-left-radius: 20px 14px;
  z-index: 1;
  pointer-events: none;
}
.feature-block:nth-child(even)::before {
  left: auto; right: -10px;
  border-top-left-radius: 0;
  border-top-right-radius: 18px 13px;
}

/* Emphasize the first letter of h1 for artistic look */
.hero h1::first-letter {
  color: var(--color-secondary);
  font-size: 3.5rem;
  font-family: 'Montserrat', cursive;
  letter-spacing: -2px;
  vertical-align: baseline;
}

/* Decorative underline accent on .big-cta */
.big-cta h2 {
  position: relative;
  display: inline-block;
}
.big-cta h2::after {
  content: '';
  display: block;
  height: 8px;
  width: 60%;
  background: #F4B028;
  border-radius: 3px;
  margin: 7px auto 0 auto;
}

/* Animated focus ring on important buttons and menu items */
.cta-btn:focus-visible, .cookie-btn:focus-visible, .mobile-menu-close:focus-visible, .mobile-menu-toggle:focus-visible, .mobile-nav a:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 2px;
  box-shadow: 0 0 2px 2px var(--color-secondary);
}


/* =========================================================
   10. BASIC RESPONSIVE RULES/TYPOGRAPHY SCALE
   =========================================================*/
@media (max-width: 600px) {
  html { font-size: 15px; }
  h1, .h1 { font-size: 2.1rem; }
  h2, .h2 { font-size: 1.5rem; }
  .big-cta h2 { font-size: 1.45rem; }
}
@media (max-width: 430px) {
  html { font-size: 14px; }
  h1, .h1 { font-size: 1.55rem; }
  h2, .h2 { font-size: 1.2rem; }
}

/* Remove default button outline on click */
button::-moz-focus-inner { border: 0; }


/* =========================================================
   11. MISC & UTILITY STYLES
   =========================================================*/
::-webkit-scrollbar {
  width: 9px;
  background: #f6f7f8;
  border-radius: 9px;
}
::-webkit-scrollbar-thumb {
  background: #dedede;
  border-radius: 8px;
}

/* Selection color */
::selection {
  background: #fae7b3;
  color: #16496B;
}

/* Visually hide elements (e.g., icons for a11y) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* =========================================================
   12. CSS ONLY FLEXBOX VERIFICATION - NO GRID!    [CRITICAL]
   =========================================================*/
/* -- All content containers already use display: flex and flexbox gap! -- */

/* =========================================================
   END OF STYLE.CSS
   =========================================================*/
