/* === 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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background: #FFF8ED;
  color: #222222;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  outline: none;
}
* {
  box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #203864;
  letter-spacing: 1.5px;
}
@media (max-width: 480px) {
  html {
    font-size: 15px;
  }
}
/* === VINTAGE RETRO THEME (PALETTE + TYPO) === */
:root {
  --color-primary: #203864;
  --color-secondary: #4FB6C8;
  --color-accent: #F2F2F2;
  --color-retro-cream: #FFF8ED;
  --color-retro-yellow: #F7E37B;
  --color-retro-orange: #F3A657;
  --color-retro-brown: #A5855E;
  --color-darkbrown: #56371B;
  --color-darkblue: #11203A;
  --color-white: #fff;
  --color-black: #222;
  --shadow-soft: 0 4px 16px rgba(60, 32, 4, 0.09);
  --radius-card: 14px;
  --radius-btn: 8px;
  --radius-pill: 999px;
  --font-display: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Open Sans', Verdana, Arial, sans-serif;
  --font-vintage: 'Montserrat', 'Futura', 'Gill Sans', 'Trebuchet MS', 'Open Sans', sans-serif;
}

body {
  background: var(--color-retro-cream);
  font-family: var(--font-body);
  color: var(--color-darkblue);
}
/* --- Typography Hierarchy --- */
h1 {
  font-size: 2.5rem;
  font-family: var(--font-vintage);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-darkbrown);
  margin-bottom: 24px;
  text-shadow: 1px 1px 0 #f7e37b, 3px 3px 0 #f3a657;
}
h2 {
  font-size: 2rem;
  font-family: var(--font-vintage);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-primary);
  letter-spacing: 1.2px;
}
h3 {
  font-size: 1.18rem;
  font-family: var(--font-vintage);
  font-weight: 700;
  color: var(--color-darkbrown);
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-family: var(--font-vintage);
  font-weight: 600;
  color: var(--color-darkblue);
}
p, ul, ol, li {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-darkblue);
}
strong {
  font-weight: 700;
  color: var(--color-brown, #A5855E);
}
/* === LAYOUT === */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
  box-sizing: border-box;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-retro-cream);
  border-radius: var(--radius-card);
}

/* universal card container layouts */
.card-container, .features-grid, .blog-list, .guides-list, .testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.card, .feature, .blog-post, .guide {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 26px 28px 22px 28px;
  border: 2px solid var(--color-retro-yellow);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover, .feature:hover, .blog-post:hover, .guide:hover {
  border-color: var(--color-retro-orange);
  box-shadow: 0 6px 20px 0 rgba(113, 66, 7, 0.13);
}

/* Responsive grid fallback for max 2/3 per row */
.features-grid, .guides-list, .blog-list {
  justify-content: space-between;
  gap: 24px;
}
.feature, .guide, .blog-post {
  flex: 1 1 300px;
  min-width: 240px;
  max-width: 340px;
}
@media (max-width: 900px) {
  .feature, .guide, .blog-post {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .card-container { flex-direction: column; }
}

.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;
}
@media (max-width: 768px) {
  .features-grid, .content-grid, .guides-list, .blog-list, .testimonials, .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

.content-wrapper {
  margin-bottom: 32px;
}
.content-wrapper:last-child {
  margin-bottom: 0;
}
.text-section {
  background: var(--color-retro-yellow);
  border-radius: var(--radius-card);
  padding: 32px 20px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-soft);
  border: 2px solid #f3a657;
}
/* HERO SECTION */
.hero {
  background: var(--color-retro-yellow);
  border-bottom: 4px solid var(--color-retro-orange);
  padding: 54px 0 44px 0;
}
.hero .content-wrapper {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.hero h1 {
  font-size: 2.8rem;
  color: var(--color-darkbrown);
}
.hero p {
  font-size: 1.22rem;
  color: var(--color-darkblue);
  margin-bottom: 24px;
}

@media (max-width: 550px) {
  .hero {
    padding: 32px 0 28px 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

.cta-section {
  background: var(--color-retro-orange);
  border-radius: var(--radius-card);
  color: var(--color-darkblue);
  text-align: center;
  padding: 42px 18px;
  margin-top: 20px;
  box-shadow: var(--shadow-soft);
}
.cta-section h2 {
  color: var(--color-darkbrown);
}

/* --- Buttons & Links --- */
.cta-primary {
  display: inline-block;
  padding: 16px 36px;
  background: var(--color-retro-brown);
  color: var(--color-retro-cream);
  font-family: var(--font-vintage);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1.2px;
  border-radius: var(--radius-pill);
  transition: background 0.18s, box-shadow 0.18s, color 0.18s, transform 0.14s;
  box-shadow: 0 2px 8px #e2d6ba48;
  border: 2px solid var(--color-retro-orange);
  margin-top: 18px;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--color-retro-orange);
  color: var(--color-darkbrown);
  box-shadow: 0 6px 30px 0 #d9b26a44;
  border-color: var(--color-retro-yellow);
  transform: translateY(-2px) scale(1.035);
}
.link-arrow {
  color: var(--color-retro-brown);
  border-bottom: 2px solid var(--color-retro-yellow);
  font-family: var(--font-vintage);
  font-weight: 600;
  padding-right: 8px;
  background: transparent;
  position: relative;
  transition: color 0.18s, border-color 0.18s;
  font-size: 1.08rem;
}
.link-arrow::after {
  content: '\2192';
  padding-left: 7px;
  color: var(--color-retro-orange);
  font-size: 1.1em;
  transition: color 0.22s;
}
.link-arrow:hover {
  color: var(--color-retro-orange);
  border-bottom-color: var(--color-retro-brown);
}
.link-arrow:hover::after {
  color: var(--color-retro-brown);
}
.read-more {
  color: var(--color-secondary);
  text-decoration: underline dashed 2px;
  font-weight: 700;
  font-family: var(--font-vintage);
  position: relative;
  margin-top: 12px;
  transition: color 0.18s;
}
.read-more:hover {
  color: var(--color-retro-orange);
}
button, .cta-primary, .blog-category-filter button, .cookie-btn {
  cursor: pointer;
}

/* Blog filter buttons */
.blog-category-filter {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}
.blog-category-filter button {
  padding: 8px 22px;
  background: var(--color-retro-yellow);
  border-radius: var(--radius-pill);
  color: var(--color-darkbrown);
  font-weight: 600;
  font-family: var(--font-vintage);
  border: 2px solid var(--color-retro-orange);
  margin-right: 8px;
  margin-bottom: 6px;
  transition: background 0.13s, color 0.13s, border-color 0.13s;
}
.blog-category-filter button:hover, .blog-category-filter button:focus {
  background: var(--color-retro-orange);
  color: var(--color-retro-cream);
  border-color: var(--color-retro-brown);
}

/* --- Header, Main Nav, Mobile Nav --- */
header {
  background: var(--color-retro-yellow);
  border-bottom: 4px solid var(--color-retro-orange);
  position: relative;
  z-index: 10;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.logo, .logo img {
  height: 52px;
  display: flex;
  align-items: center;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: 30px;
  margin-right: 30px;
}
.nav-list li a {
  color: var(--color-darkbrown);
  font-family: var(--font-vintage);
  font-size: 1.03rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 10px 8px;
  border-radius: 8px;
  transition: background 0.14s, color 0.14s;
}
.nav-list li a:hover, .nav-list li a:focus {
  background: var(--color-retro-orange);
  color: var(--color-retro-cream);
}

/* Hide cta-primary in mobile nav (shown at bottom) */
@media (max-width: 1050px) {
  .nav-list {
    gap: 10px;
    margin-left: 12px;
    margin-right: 6px;
  }
}

/* --- MOBILE NAV --- */
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 950px) {
  .nav-list, nav .cta-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    background: var(--color-retro-orange);
    color: var(--color-retro-cream);
    border: none;
    border-radius: var(--radius-pill);
    padding: 8px 18px 8px 18px;
    margin-left: 10px;
    transition: background 0.2s, color 0.2s;
    z-index: 120;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: var(--color-retro-brown);
    color: var(--color-retro-yellow);
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-retro-yellow);
  box-shadow: 2px 0 18px 0 #ad812547;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.37s cubic-bezier(0.72,0.12,0.22,1);
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  margin: 17px 27px 0 0;
  background: var(--color-retro-brown);
  color: var(--color-retro-cream);
  border-radius: var(--radius-pill);
  padding: 2px 20px;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-retro-orange);
  color: var(--color-darkbrown);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 0 12px 0;
  gap: 18px;
  margin-top: 22px;
}
.mobile-nav a {
  color: var(--color-darkbrown);
  font-family: var(--font-vintage);
  font-size: 1.38rem;
  font-weight: bold;
  letter-spacing: 1.3px;
  border-radius: var(--radius-pill);
  padding: 13px 35px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-retro-orange);
  color: var(--color-retro-cream);
}

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

/* --- Features Section --- */
.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-white);
  min-height: 210px;
  border: 2px solid var(--color-retro-yellow);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-card);
  padding: 24px 20px 24px 20px;
}
.feature img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  filter: drop-shadow(1px 1px 0 #f3a657);
}

/* --- Timeline --- */
.timeline ul {
  padding-left: 0;
}
.timeline li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 20px;
  color: var(--color-darkbrown);
  font-family: var(--font-vintage);
  font-size: 1.05rem;
}
.timeline li:before {
  content: '';
  position: absolute;
  left: 7px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--color-retro-orange);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--color-retro-yellow);
}
.timeline li:last-child {
  margin-bottom: 0;
}

/* --- Testimonials --- */
.testimonials {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--color-white);
  border: 2px solid var(--color-retro-orange);
  border-radius: var(--radius-card);
  min-width: 295px;
  max-width: 370px;
  box-shadow: 0 3px 15px 0 #e8bc7e44;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.testimonial-card p {
  font-style: italic;
  color: var(--color-darkblue);
  font-size: 1.07rem;
  margin-bottom: 7px;
}
.testimonial-name {
  font-weight: bold;
  color: var(--color-darkbrown);
  font-size: 1.08rem;
}
.rating-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.rating-stars img {
  height: 24px; width: 24px;
}
@media (max-width:900px) {
  .testimonials {
    flex-direction: column;
  }
}

/* --- FAQ / Guides List --- */
.guides-list {
  gap: 24px;
}
.guide {
  background: var(--color-white);
  border-radius: var(--radius-card);
  border: 2px solid var(--color-retro-yellow);
  box-shadow: var(--shadow-soft);
  padding: 22px 18px 14px 18px;
  position: relative;
  min-width: 240px;
  max-width: 340px;
  flex: 1 1 300px;
  margin-bottom: 20px;
  transition: border-color 0.17s, box-shadow 0.2s;
}
.guide:hover {
  border-color: var(--color-retro-orange);
  box-shadow: 0 6px 16px #f3a65728;
}

/* FAQ accordion (non-collapsible variant) */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}
.faq-item {
  background: var(--color-retro-yellow);
  border-radius: var(--radius-card);
  padding: 18px 16px;
  border-left: 6px solid var(--color-retro-orange);
  box-shadow: 0 3px 10px #c7a76019;
  color: var(--color-darkblue);
}
.faq-item h3 {
  margin-bottom: 7px;
  font-size: 1.06rem;
}

/* --- Comparison Table --- */
.comparison-table {
  overflow-x: auto;
  background: var(--color-retro-cream);
  border-radius: var(--radius-card);
  margin-bottom: 18px;
  box-shadow: 0 2px 5px #e8bc7e13;
}
.comparison-table table {
  width: 100%;
  padding: 0;
  border-collapse: collapse;
  font-family: var(--font-body);
}
.comparison-table th,
.comparison-table td {
  border: 2px solid var(--color-retro-orange);
  padding: 13px 12px;
  text-align: left;
  font-size: 1rem;
  background: var(--color-white);
}
.comparison-table th {
  background: var(--color-retro-yellow);
  font-family: var(--font-vintage);
  font-size: 1.1rem;
  color: var(--color-darkbrown);
}

/* --- Blog --- */
.blog-list {
  gap: 24px;
}
.blog-post {
  background: var(--color-white);
  padding: 26px 20px 18px 20px;
  border-radius: var(--radius-card);
  border: 2px solid var(--color-retro-yellow);
  box-shadow: 0 2px 10px #f7e37b33;
  position: relative;
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 340px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
}
.blog-post h3 {
  font-size: 1.2rem;
}

/* --- Contact Info --- */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}
.contact-info-list div {
  font-size: 1rem;
  color: var(--color-darkbrown);
  font-family: var(--font-vintage);
  display: flex;
  align-items: center;
  gap: 13px;
}
.contact-info-list img {
  height: 28px; width: 28px;
}
.location-map {
  background: var(--color-retro-yellow);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 26px 20px;
  margin-top: 22px;
}

/* --- Footer --- */
footer {
  background: var(--color-retro-yellow);
  border-top: 4px solid var(--color-retro-orange);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  padding-top: 32px;
  padding-bottom: 20px;
  justify-content: space-between;
}
.footer-logo img {
  height: 55px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 10px;
}
.footer-links a {
  font-family: var(--font-vintage);
  color: var(--color-darkbrown);
  font-size: 1.07rem;
  transition: color 0.14s;
}
.footer-links a:hover {
  color: var(--color-retro-orange);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-body);
  color: var(--color-darkbrown);
}
.footer-contact div{
  display: flex; align-items: center; gap: 10px;
}
.footer-contact img {
  width: 22px; height: 22px;
}
.footer-copy {
  width: 100%;
  padding-top: 18px;
  font-family: var(--font-vintage);
  font-size: 1rem;
  color: var(--color-darkbrown);
  letter-spacing: 1px;
  opacity: 0.93;
}
@media (max-width:850px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* --- Cookie Consent Banner --- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--color-retro-brown);
  color: var(--color-retro-cream);
  box-shadow: 0 -2px 18px #4d2b0c33;
  padding: 20px 18px 18px 18px;
  z-index: 44444;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  font-family: var(--font-vintage);
  font-size: 1.02rem;
  animation: bannerIn 0.44s ease-in;
}
@keyframes bannerIn {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 10px 22px;
  background: var(--color-retro-yellow);
  border-radius: var(--radius-pill);
  font-family: var(--font-vintage);
  font-weight: 600;
  border: 2px solid var(--color-retro-orange);
  color: var(--color-darkbrown);
  transition: all 0.16s;
  margin-right: 6px;
}
.cookie-btn:hover {
  background: var(--color-retro-orange);
  color: var(--color-retro-cream);
  border-color: var(--color-retro-brown);
}
.cookie-btn--secondary {
  background: var(--color-retro-orange);
  color: var(--color-retro-cream);
}
.cookie-btn--secondary:hover {
  background: var(--color-retro-brown);
  color: var(--color-retro-yellow);
}

/* --- Cookie Modal --- */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(32,56,100,0.58);
  z-index: 55555;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalIn 0.38s cubic-bezier(0.43,1.08,0.39,0.97);
}
@keyframes modalIn {
  0% {opacity:0; transform: scale(1.23) translateY(-70px);}
 100% {opacity:1; transform: scale(1) translateY(0);}
}
.cookie-modal-inner {
  background: var(--color-retro-yellow);
  color: var(--color-darkbrown);
  border-radius: var(--radius-card);
  padding: 40px 28px 30px 28px;
  max-width: 420px;
  width: 92vw;
  box-shadow: 0 10px 40px #ad812559;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: var(--font-vintage);
  position: relative;
}
.cookie-modal-inner h2 {
  font-size: 1.34rem;
  margin-bottom: 10px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 13px;
}
.cookie-modal-category label {
  font-family: var(--font-body);
  color: var(--color-darkbrown);
}
.cookie-modal-category input[type="checkbox"] {
  accent-color: var(--color-retro-orange);
  width: 22px; height: 22px;
}
.cookie-modal-footer {
  display: flex;
  gap: 13px;
  margin-top: 15px;
}
.cookie-modal-close {
  position: absolute; right: 17px; top: 17px;
  background: var(--color-retro-orange);
  color: var(--color-retro-cream);
  border-radius: var(--radius-pill);
  font-size: 1.28rem;
  padding: 2px 20px;
  transition: background 0.14s;
  border:none;
}
.cookie-modal-close:hover {
  background: var(--color-retro-brown);
}

/* --- Misc --- */
.thankyou-next-steps {
  margin: 18px 0 21px 0;
  background: var(--color-retro-yellow);
  padding: 18px 16px;
  border-radius: var(--radius-card);
  box-shadow: 0 2px 8px #f7e37b22;
  font-family: var(--font-body);
}
.thankyou-next-steps ul {
  margin-top: 7px;
}
.thankyou-next-steps ul li {
  margin-bottom: 4px;
}

/* --- Utility --- */
.text-center     { text-align: center; }
.d-flex         { display: flex; }
.flex-wrap      { flex-wrap: wrap; }
.flex-center    { align-items: center; justify-content: center; }
.flex-column    { flex-direction: column; }
.gap20          { gap: 20px; }
.mb20           { margin-bottom: 20px; }
.mt20           { margin-top: 20px; }
.pt20           { padding-top: 20px; }

/* --- Spacing between all major content blocks --- */
section, .section, .content-wrapper, .card, .feature, .blog-post, .guide, .testimonials, .testimonial-card {
  margin-bottom: 20px;
}
@media (max-width:600px) {
  .section,
  .text-section,
  .cta-section {
    padding-left: 7px; padding-right: 7px;
  }
}

/* --- Remove outline for mouse users, Keep for keyboard --- */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible{
  outline:2px solid var(--color-retro-orange) !important;
  outline-offset:2px;
}

/* === END OF CSS === */
