/* ========== RESET & NORMALIZE ========== */
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;
  background: #F8F6F2;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F8F6F2;
  color: #2A2622;
  line-height: 1.7;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #18486B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B56230;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}
strong {
  font-weight: 700;
}
hr {
  border: none;
  border-bottom: 1px solid #ded7ca;
  margin: 32px 0;
}

/* ========== BRAND FONTS (Google Fonts - fallback) ========== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Impact, 'Arial Black', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: #18486B;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; line-height: 1.15; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 14px; }
h4, h5, h6 { font-size: 1rem; }

p, ul, ol { font-family: 'Roboto', Arial, sans-serif; font-size: 1rem; margin-bottom: 16px; }

/* Vintage/Retro Accent Headings */
h1, h2 {
  text-shadow: 1px 2px 0 #EDA061, 2px 4px 0 #B56230;
  /* subtle layered shadow for vintage sign feel */
}

/* ========== COLORS ========== */
:root {
  --color-primary: #18486B;
  --color-primary-dark: #132c40;
  --color-secondary: #2D9256;
  --color-secondary-dark: #1a6046;
  --color-accent: #F4F6F9;
  --color-bg: #F8F6F2;
  --color-border: #DDCBB6;
  --color-cream: #F8F6F2;
  --color-sepia: #EFD9B2;
  --color-orange: #EDA061;
  --color-brown: #B56230;
  --color-warmgray: #817B71;
  --color-shadow: rgba(183, 145, 87, 0.11);
  --color-shadow-heavy: rgba(120, 82, 51, 0.18);
}

/* ========== LAYOUT ========== */
.container {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

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

@media (max-width: 900px) {
  .container {
    padding: 0 10px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
}

@media (max-width: 768px) {
  .section,
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  h1, h2 { text-align: center; }
}

/* ========== HEADER & NAVIGATION ========== */
header {
  width: 100%;
  background: var(--color-primary);
  color: #fff;
  position: relative;
  box-shadow: 0 5px 16px var(--color-shadow);
  z-index: 100;
}
header .cta-button {
  display: none;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  height: 90px;
}
header img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #FFF;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 1px 0 var(--color-brown);
  letter-spacing: 0.05em;
  position: relative;
  padding: 8px 8px 8px 6px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-orange);
  color: var(--color-primary-dark);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-orange);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.05em;
  font-size: 1.05rem;
  padding: 10px 28px;
  border-radius: 40px;
  box-shadow: 0 4px 12px var(--color-shadow);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  margin-left: 18px;
  transition: background 0.18s, color 0.18s, box-shadow 0.15s;
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-secondary);
  color: #fff;
  box-shadow: 0 6px 26px var(--color-shadow-heavy);
}

@media (max-width: 1100px) {
  .main-nav { gap: 14px; }
}

@media (max-width: 950px) {
  header .container {
    height: auto;
    flex-wrap: wrap;
    gap: 8px;
    padding-bottom: 10px;
  }
  .cta-button {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .main-nav, .cta-button {
    display: none !important;
  }
  header .container {
    height: 60px;
    gap: 0;
    position: relative;
  }
}

header a:focus {
  outline: 2px solid var(--color-orange);
  outline-offset: 2px;
}

/* ========== MOBILE MENU ========== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 15px;
  background: var(--color-orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 3px 8px var(--color-shadow);
  z-index: 102;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-secondary-dark);
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #f8f6f2;
  color: var(--color-primary-dark);
  z-index: 201;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 30px 24px 0 24px;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.55,0,.1,1);
  box-shadow: -4px 0 28px var(--color-shadow-heavy);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--color-orange);
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  align-self: flex-end;
  margin-bottom: 16px;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 205;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 12px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--color-primary-dark);
  background: none;
  padding: 13px 6px 13px 0;
  border-radius: 0 12px 12px 0;
  border-left: 6px solid var(--color-orange);
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-brown);
  color: #fff;
}

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

/* ========== HERO SECTIONS ========== */
.hero {
  background: var(--color-cream);
  padding: 52px 0 56px 0;
  border-bottom: 8px solid var(--color-sepia);
  margin-bottom: 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.hero p {
  font-size: 1.12rem;
  color: var(--color-warmgray);
  font-weight: 500;
  max-width: 660px;
  margin-bottom: 24px;
}
.hero .cta-button {
  margin-top: 8px;
}
@media (max-width: 768px) {
  .hero {
    padding: 30px 0 26px 0;
  }
}

/* ========== FLEX LAYOUTS ========== */
.feature-grid, .country-list-grid, .sector-grid, .service-categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.service-categories-grid > div,
.country-list-grid > div,
.sector-grid > div,
.feature-grid > div {
  background: var(--color-accent);
  border: 1.5px solid var(--color-border);
  border-radius: 16px;
  box-shadow: 0 3px 16px var(--color-shadow);
  padding: 24px 18px 22px 18px;
  flex: 1 1 220px;
  min-width: 230px;
  max-width: 280px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.14s, transform 0.18s;
  margin-bottom: 20px;
  position: relative;
}
.service-categories-grid > div:hover,
.country-list-grid > div:hover,
.sector-grid > div:hover,
.feature-grid > div:hover {
  box-shadow: 0 7px 34px var(--color-shadow-heavy);
  transform: translateY(-3px) scale(1.03);
}

/**** PATTERNS & NOSTALGIC DETAILS ****/
.service-categories-grid > div, .feature-grid > div {
  background: repeating-linear-gradient(135deg, #F4F6F9 0 12px, #EFD9B2 13px 28px);
}
.country-list-grid > div {
  background: radial-gradient(circle at top right, #FEEBCC 0%, #F4F6F9 110%);
}
.sector-grid > div {
  background: repeating-linear-gradient(45deg, #F8F6F2 0 14px , #EDA061 15px 29px);
}
/**** END VINTAGE PATTERNS ****/

.feature-grid img,
.country-list-grid img,
.sector-grid img,
.service-categories-grid img {
  width: 43px;
  height: 43px;
  margin-bottom: 12px;
  filter: drop-shadow(1px 1px 0 var(--color-orange));
}
.feature-grid h3,
.country-list-grid h3,
.sector-grid h3,
.service-categories-grid h3 {
  color: var(--color-brown);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  margin-bottom: 10px;
  margin-top: 4px;
  text-shadow: 0 1px 0 #fff;
}
.feature-grid p, .country-list-grid p,
.sector-grid p, .service-categories-grid p {
  font-size: 1rem;
  color: #554B3E;
}

@media (max-width: 900px) {
  .feature-grid, .country-list-grid, .sector-grid, .service-categories-grid {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .country-list-grid, .sector-grid, .service-categories-grid {
    flex-direction: column;
  }
  .feature-grid > div, .country-list-grid > div, .service-categories-grid > div, .sector-grid > div {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}

/**** SPACING & ALIGNMENT: FLEXBOX PATTERNS ****/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fffbe6;
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 2px 14px var(--color-shadow);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .content-grid {
    gap: 14px;
  }
}
.testimonial-card, .testimonial-card-dark {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF;
  color: #26200e;
  border-radius: 16px;
  border: 2px solid var(--color-border);
  box-shadow: 0 4px 10px var(--color-shadow);
  margin-bottom: 20px;
  position: relative;
  min-width: 0;
  max-width: 600px;
}
.testimonial-card p {
  flex: 1;
  font-size: 1.1rem;
  color: #252627;
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-details {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-brown);
  font-size: 1rem;
  font-weight: 700;
  margin-left: 14px;
  text-align: right;
}
/* Higher contrast/alt bg for testi-card-dark (not used in default HTML, but available) */
.testimonial-card-dark {
  background: #1a6046;
  color: #fffbe6;
}
.testimonial-card-dark .testimonial-details {
  color: #EDA061;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========== TEXT SECTIONS, CONTENT & FAQ ========== */
.text-section {
  margin-bottom: 28px;
}
.text-section ul {
  margin-bottom: 0;
}
.text-section img {
  width: 23px;
  height: 23px;
  margin-right: 9px;
  vertical-align: middle;
  display: inline-block;
}

.faq ul {
  list-style: square inside;
  color: var(--color-primary);
}
.faq li {
  background: #FFF;
  margin-bottom: 18px;
  padding: 14px 22px;
  border-radius: 11px;
  box-shadow: 0 2px 10px var(--color-shadow);
  border-left: 5px solid var(--color-brown);
  font-size: 1.04rem;
}

.downloadable-guides h2 {
  font-size: 1.23rem;
  color: var(--color-secondary-dark);
  margin-bottom: 12px;
}
.downloadable-guides ul li {
  margin-bottom: 10px;
}
.downloadable-guides a {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: underline;
}
.downloadable-guides a:hover {
  color: #B56230;
}

/***** Vintage borders & accents *****/
.section, .card, .faq li, .testimonial-card {
  border-style: solid;
  border-width: 2.5px;
  border-color: var(--color-border);
  background-clip: padding-box;
}
.section {
  background: var(--color-accent);
  border-radius: 20px;
  box-shadow: 0 6px 32px var(--color-shadow);
}

/***** Classic List Styles *****/
ul, ol {
  padding-left: 1.3em;
}
ul li {
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

/***** Service List Detailed *****/
.service-list-detailed {
  margin-bottom: 30px;
}
.service-list-detailed h2 {
  margin-top: 18px;
  color: var(--color-secondary-dark);
  font-size: 1.35rem;
}

/***** Cards & Confirmation *****/
.confirmation .text-section {
  background: linear-gradient(90deg, #F4F6F9 68%, #EDA0611a 100%);
  padding: 24px 24px 22px 24px;
  border-radius: 16px;
  margin-bottom: 12px;
  box-shadow: 0 2px 12px var(--color-shadow);
}
.confirmation .cta-button {
  margin-top: 22px;
}

/***** Map Placeholder Styling *****/
.map-placeholder {
  background: repeating-linear-gradient(-45deg, #F8F6F2, #F8F6F2 12px, #eda06111 13px, #eda06111 24px);
  border: 1.5px solid var(--color-orange);
  border-radius: 12px;
  padding: 18px 10px 10px 10px;
  margin-top: 18px;
  box-shadow: 0 2px 14px var(--color-shadow);
  color: #55513a;
}
.map-placeholder img {
  margin-bottom: 7px;
}

/* ========== FOOTER ========== */
footer {
  background: var(--color-sepia);
  color: var(--color-primary-dark);
  padding: 26px 0 16px 0;
  border-top: 6px solid var(--color-orange);
  margin-top: 36px;
  font-family: 'Montserrat', Arial, sans-serif;
}
footer .content-wrapper, footer .footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
footer .footer-menu {
  gap: 24px;
}
footer .footer-menu a {
  color: var(--color-primary-dark);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.97rem;
  border-radius: 8px;
  padding: 5px 7px;
  transition: background 0.15s, color 0.15s;
}
footer .footer-menu a:hover,footer .footer-menu a:focus {
  background: var(--color-orange);
  color: #fff;
}
footer .social-links {
  display: flex;
  gap: 13px;
}
footer .social-links img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  box-shadow: 0 1px 8px var(--color-shadow);
  background: #fff;
  padding: 2px;
}
footer .brand-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #7C684E;
}
footer .brand-info img {
  width: 32px;
  height: 32px;
}
@media (max-width: 900px) {
  footer .content-wrapper, footer .footer-menu {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 10px;
  }
}

/* ========== COOKIE CONSENT BANNER & MODAL ========== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 500;
  width: 100vw;
  background: var(--color-orange);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 27px 16px 21px 20px;
  font-size: 1.05rem;
  box-shadow: 0 -7px 32px var(--color-shadow-heavy);
  border-top: 4px solid #b56230;
  animation: fadein 0.64s cubic-bezier(.55,0,.1,1);
}
.cookie-consent-banner .cookie-text {
  flex: 2;
  max-width: 680px;
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  padding: 7px 22px;
  border: none;
  border-radius: 22px;
  cursor: pointer;
  background: #FFF;
  color: var(--color-brown);
  box-shadow: 0 1px 8px var(--color-shadow);
  margin-right: 0;
  transition: background 0.15s, color 0.15s, box-shadow 0.17s;
}
.cookie-btn.accept {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-btn.reject {
  background: #fff3e8;
  color: var(--color-brown);
}
.cookie-btn.settings {
  background: var(--color-accent);
  color: var(--color-primary-dark);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-primary);
  color: #fff;
}

@keyframes fadein {
  from { transform: translateY(80px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

@media (max-width: 650px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 12px;
    padding: 18px 10px 16px 10px;
  }
  .cookie-consent-banner .cookie-buttons {
    justify-content: flex-start;
    width: 100%;
    gap: 11px;
  }
}

.cookie-modal-overlay {
  background: rgba(24,72,107,0.77);
  position: fixed;
  z-index: 900;
  left: 0; right: 0; bottom: 0; top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein 0.45s;
}
.cookie-modal {
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 6px 34px var(--color-shadow-heavy);
  padding: 40px 32px 28px 32px;
  max-width: 460px;
  width: 94vw;
  font-family: 'Roboto', Arial, sans-serif;
  color: #222;
  position: relative;
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.45rem;
  margin-bottom: 18px;
  color: var(--color-primary-dark);
}
.cookie-modal-categories {
  margin-bottom: 22px;
}
.cookie-modal-category {
  margin-bottom: 17px;
  font-size: 1.04rem;
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-switch {
  appearance: none;
  width: 38px;
  height: 22px;
  border-radius: 22px;
  background: #e3ddcb;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-switch:checked {
  background: var(--color-secondary);
}
.cookie-switch::after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 6px var(--color-shadow);
  position: absolute;
  top: 1px; left: 1px;
  transition: left 0.18s;
}
.cookie-switch:checked::after {
  left: 17px;
}
.cookie-modal .modal-btns {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.cookie-modal .cookie-btn {
  box-shadow: 0 1px 10px var(--color-shadow);
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 18px;
  background: #F4F6F9;
  color: var(--color-brown);
  width: 33px; height:33px;
  border-radius: 50%;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.25s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--color-orange);
  color: #fff;
}

@media (max-width: 500px) {
  .cookie-modal { padding: 19px 7vw 16px 7vw; }
  .cookie-modal h2 { font-size: 1.15rem; }
}

/* ========== BUTTONS & INTERACTIONS ========== */
button, .cta-button, .cookie-btn {
  outline: none;
  border: none;
}
button:focus, .cta-button:focus, .cookie-btn:focus {
  outline: 2px solid var(--color-orange);
  outline-offset: 2px;
}

/* Card hover micro-interaction */
.card, .faq li, .testimonial-card, .feature-grid > div, .country-list-grid > div, .sector-grid > div, .service-categories-grid > div {
  transition: box-shadow 0.18s, transform 0.16s, background 0.14s, color 0.12s;
}
.card:hover, .faq li:hover, .testimonial-card:hover {
  box-shadow: 0 7px 38px var(--color-shadow-heavy);
  transform: translateY(-2px) scale(1.015);
  background: #fcf4e6;
}

/* ========== RESPONSIVE UTILITIES ========== */
@media (max-width:600px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.06rem; }
  .section { padding: 18px 2px; }
  .faq li, .testimonial-card, .card, .downloadable-guides ul li { font-size: 0.97rem; }
}

/* ========== SCROLLBAR (for retro effect) ========== */
::-webkit-scrollbar {
  width: 13px;
  background: var(--color-sepia);
}
::-webkit-scrollbar-thumb {
  background: var(--color-orange);
  border-radius: 8px;
  box-shadow: 0 1px 8px var(--color-shadow);
}

/* ========== RETRO STYLISTIC ELEMENTS ========== */
.section, .hero, footer, .testimonial-card, .card {
  border-radius: 20px;
}
.section {
  box-shadow: 0 10px 42px var(--color-shadow-heavy);
}

.hero {
  background: repeating-linear-gradient(135deg, #f8f6f2 0 16px, #efd9b2 17px 31px);
}

.cta, .cta .container, .cta .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.cta .cta-button {
  margin-top: 12px;
  font-size: 1.08rem;
}

/* Decorative dots/bar pattern on .features section */
.features {
  position: relative;
  background: repeating-linear-gradient(90deg, #EFD9B2 0 20px, #F8F6F2 21px 42px);
}
.features:before {
  content: '';
  position: absolute; left: 16px; top: 20px;
  width: 23px; height: 8px;
  background: repeating-linear-gradient(90deg, var(--color-orange), var(--color-orange) 8px, transparent 9px, transparent 11px);
  opacity: .6;
  border-radius:4px;
}
.features:after {
  content: '';
  position: absolute; right: 16px; bottom: 20px;
  width: 17px; height: 7px;
  background: repeating-linear-gradient(90deg, var(--color-brown), var(--color-brown) 7px, transparent 8px, transparent 11px);
  opacity: .5;
  border-radius:3px;
}
@media (max-width: 900px) {
  .features:before, .features:after { display: none; }
}

/* ========== LEGAL & TEXT PAGES ========== */
.legal .text-section {
  padding: 16px 19px 11px 23px;
  background: #fffbe6;
  border-radius: 13px;
  margin-bottom: 19px;
  box-shadow: 0 3px 14px var(--color-shadow);
}
.legal ul li {
  margin-bottom: 11px;
}

/**** Extra Smooth Transition for page content ****/
main, section, .content-wrapper, .section, .card {
  transition: background 0.28s, box-shadow 0.28s, color 0.14s;
}

/**** END CSS ****/
