/* ===================================================
   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;
}
footer p {
  color: white;
}
html {
  scroll-behavior: smooth;
  background: #fff;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #23496C;
  background: #F3F5F7;
  min-height: 100vh;
  line-height: 1.6;
}
b *,
body * {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
a {
  color: #F7B32B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #23496C;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.4em;
}

/* ===================================================
   CREATIVE ARTISTIC STYLE VARIABLES
   =================================================== */
:root {
  --primary: #23496C;
  --secondary: #F3F5F7;
  --accent: #F7B32B;
  --highlight: #64b5f6;
  --danger: #E74C3C;
  --card-bg: #fff;
  --font-display: 'Montserrat', 'Open Sans', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --radius-sm: 12px;
  --radius-md: 20px;
  --shadow: 0 4px 24px rgba(35,73,108,0.09), 0 1.5px 6px rgba(247,179,43,0.08);
  --shadow-lg: 0 7px 32px rgba(35,73,108,0.14), 0 3px 14px rgba(247,179,43,0.11);
}

/* ARTISTIC FONTS */
h1, h2, h3, h4, .cta-button, .hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .01em;
}

/* ===================================================
   SITE CONTAINERS & RESPONSIVE LAYOUTS
   =================================================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.text-section {
  max-width: 720px;
  margin: 0 auto;
}

/* ===================================================
   TYPOGRAPHY SCALE
   =================================================== */
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--primary);
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
  color: var(--accent);
  line-height: 1.2;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--primary);
  font-family: var(--font-display);
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
  color: var(--primary);
}
p, ul, ol {
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--primary);
}
ul li, ol li {
  margin-bottom: 8px;
  font-family: var(--font-body);
}
strong {
  font-weight: bold;
}

/* Artistic inline highlights */
mark, .highlight {
  background: var(--accent);
  color: #23496C;
  border-radius: 6px;
  padding: 2px 6px;
  font-family: var(--font-display);
}

/* ===================================================
   HEADER & NAVBAR
   =================================================== */
header {
  background: var(--card-bg);
  box-shadow: 0 4px 24px rgba(35,73,108,0.07);
  border-bottom: 4px solid var(--accent);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px;
  gap: 24px;
  position: relative;
}
header img {
  height: 42px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 16px;
  padding: 8px 0;
  color: var(--primary);
  position: relative;
  font-weight: 600;
  letter-spacing: 0.015em;
  transition: color 0.2s, background 0.2s;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 2.5px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.28s cubic-bezier(.4,1.7,.6,1);
  margin-top: 2px;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--accent);
}
.cta-button {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  background: var(--accent);
  color: #23496C;
  border-radius: var(--radius-md);
  padding: 13px 30px;
  box-shadow: var(--shadow);
  transition: background 0.2s, color 0.2s, transform 0.17s;
  letter-spacing: 0.045em;
  border: none;
  cursor: pointer;
  margin-left: 18px;
  margin-bottom: 0;
}
.cta-button:hover, .cta-button:focus {
  background: #ffe389;
  color: #23496C;
  transform: translateY(-2px) scale(1.045) rotate(-1deg);
  box-shadow: var(--shadow-lg);
}

/* Hide menu toggle on desktop */
.mobile-menu-toggle {
  display: none;
}
.mobile-menu {
  display: none;
}

/* ==============================================
   MOBILE NAVIGATION
   ============================================== */
@media (max-width: 1020px) {
  .main-nav { gap: 12px; }
  .cta-button { padding: 11px 18px; font-size: 1rem; margin-left: 10px; }
  header .container { gap: 12px; padding: 12px 10px; }
}
@media (max-width: 768px) {
  .main-nav, .footer-nav, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    background: var(--accent);
    color: #23496C;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: none;
    cursor: pointer;
    margin-left: 12px;
    transition: background 0.2s, color 0.2s;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 6000;
  }
  .mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
    background: #ffe389;
    color: #23496C;
  }
  .mobile-menu {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: linear-gradient(105deg, #fff 75%, #fff9ea 110%);
    box-shadow: 0 10px 40px rgba(35,73,108,0.23);
    z-index: 10000;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(.76,.19,.28,.92);
    padding-top: 58px;
    padding-left: 0;
    padding-right: 0;
  }
  .mobile-menu.open {
    transform: translateX(0);
  }
  .mobile-menu-close {
    position: absolute;
    right: 24px;
    top: 18px;
    font-size: 2.25rem;
    color: #23496C;
    background: #ffe389;
    border: none;
    border-radius: 99px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 10200;
    box-shadow: var(--shadow);
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
    margin: 44px 0 0 0;
    width: 100%;
  }
  .mobile-nav a {
    font-size: 1.25rem;
    color: #23496C;
    font-family: var(--font-display);
    transition: color .19s, transform .24s;
    padding: 11px 24px;
    border-radius: 18px;
  }
  .mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
    color: var(--accent);
    background: #23496C10;
    transform: scale(1.04);
  }
}

/* ===================================================
   PAGE SECTIONS & ARTISTIC EFFECTS
   =================================================== */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  position: relative;
}
.hero {
  background: linear-gradient(123deg,#F7B32B20 0%,#F3F5F7 60%);
  padding-top: 60px;
  padding-bottom: 60px;
  margin-bottom: 48px;
  border-bottom: 6px solid var(--accent);
  min-height: 350px;
}
.hero .text-section {
  text-align: center;
  align-items: center;
}
.hero h1 {
  font-size: 2.8rem;
  color: var(--primary);
  text-shadow: 0 1px 0 #ffe389, 0 2px 6px #23496c25;
  margin-bottom: 14px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: #47596B;
  font-family: var(--font-body);
}

/* Features grid, only flex! */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
  margin-top: 16px;
}
.features .feature-grid > div {
  flex: 1 1 280px;
  min-width: 220px;
  max-width: 320px;
  background: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 28px 18px 20px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.24s, transform 0.19s;
  position: relative;
}
.features .feature-grid > div:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px) scale(1.03) rotate(0.3deg);
}
.features .feature-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 12px #f7b32b30);
}
.features .feature-icons ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style-type: none;
  margin: 18px 0 0 0;
  padding: 0;
}
.features .feature-icons li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  color: #23496C;
  background: #F3F5F7;
  padding: 10px 18px;
  border-radius: 18px;
  margin-bottom: 8px;
  box-shadow: 0 2px 6px #23496c08;
  font-weight: 600;
}
.features .feature-icons img {
  width: 30px;
  height: 30px;
}

/********************
 STEP SECTION, Process Timeline, etc.
********************/
.steps ol, .about-approach ol, .about-mission ul, .service-benefits ul {
  margin-left: 1.1em;
  margin-bottom: 0;
  padding-right: 10px;
}
.steps li, .about-approach li,
.about-mission li, .service-benefits li {
  margin-bottom: 14px;
  font-size: 1.07rem;
  line-height: 1.5;
}
.steps strong, .about-approach strong, .about-mission strong {
  color: var(--accent);
  font-weight: 700;
}

/********************
 TESTIMONIALS
********************/
.testimonials .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 10px;
  justify-content: space-between;
}
.testimonial-card {
  background: #fff9ea;
  border-left: 6px solid var(--accent);
  box-shadow: var(--shadow);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  color: #23496C;
  font-size: 1.05rem;
  font-family: var(--font-body);
}
.testimonial-card p {
  margin-bottom: 8px;
  color: #23496C;
  font-style: italic;
  font-weight: 500;
}
.testimonial-card span {
  font-size: .97rem;
  color: #624100;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/********************
 CTA BANNER
********************/
.cta-banner {
  background: linear-gradient(103deg, #ffe389 94%, #ffe38930 103%);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 12px #f7b32b30;
  margin-bottom: 60px;
  padding: 44px 20px 48px 20px;
  text-align: center;
}
.cta-banner h2 {
  color: var(--primary);
  font-size: 2.2rem;
  margin-bottom: 13px;
}
.cta-banner p {
  color: #23496C;
  font-size: 1.15rem;
  margin-bottom: 24px;
}

/********************
 SERVICE & LISTINGS
********************/
.service-list, .feature-grid, .process-timeline, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.service-list > div, .process-timeline > div, .faq-list > div {
  flex: 1 1 300px;
  min-width: 220px;
  max-width: 360px;
  background: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 24px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  transition: box-shadow .2s, transform .15s;
}
.service-list > div:hover, .process-timeline > div:hover, .faq-list > div:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px) scale(1.03);
}
.service-list img, .process-timeline img {
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 16px #ffe38985);
}

/********************
 FAQ PAGE
********************/
.faq-section {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}
.faq-list > div h2 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--primary);
  font-family: var(--font-display);
}
.faq-list > div p {
  font-size: 1rem;
  color: #23496C;
  margin-bottom: 2px;
}
.faq-contact {
  margin-top: 34px;
  border-top: 2px dashed #ffe389;
  padding-top: 18px;
  text-align: center;
}

/********************
 PRICING TABLES
********************/
.pricing table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 30px 0;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.pricing th, .pricing td {
  padding: 14px 18px;
  font-size: 1rem;
  border-bottom: 1px solid #eee;
  color: #23496C;
}
.pricing th {
  background: #ffe389;
  color: #23496C;
  font-family: var(--font-display);
  font-weight: 700;
}
.pricing tr:last-child td {
  border-bottom: none;
}
.pricing-notes {
  margin-top: 22px;
  background: #fff9ea;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: #885000;
  box-shadow: 0 1px 6px #f7b32b0a;
}

/***************
 LEGAL SECTION
****************/
.legal-section {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding-top: 34px;
  padding-bottom: 34px;
}
.legal-section h1, .legal-section h2 {
  color: var(--primary);
}
.legal-section a {
  color: var(--accent);
  text-decoration: underline;
}

/*****************
 CONTACT SECTION
******************/
.contact-section {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}
.contact-details {
  background: #F3F5F7;
  padding: 18px 24px;
  border-radius: var(--radius-sm);
  margin-top: 20px;
  color: #23496C;
  font-size: 1.07rem;
}
.contact-details a {
  color: var(--accent);
  font-weight: 700;
}
.contact-map {
  background: #fff9ea;
  border-radius: var(--radius-md);
  margin-bottom: 40px;
  box-shadow: 0 1.5px 10px #ffe38975;
  padding: 26px 18px 26px 18px;
  color: #23496C;
}

/*****************
 THANK YOU PAGE
*****************/
.thank-you {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  margin-bottom: 80px;
}
.thank-you h1 {
  color: var(--accent);
  font-size: 2.3rem;
}

/********************************************
   FOOTER
*********************************************/
footer {
  background: var(--primary);
  color: #fff;
  padding: 38px 0 24px 0;
  font-size: 1rem;
  margin-top: 80px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  box-shadow: 0 -1px 36px #23496c12;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
footer img {
  height: 44px;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 6px;
}
.footer-nav a {
  color: #ffe389;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .01em;
  padding: 5px 0;
  transition: color 0.2s, background 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-contact {
  margin-top: 3px;
  color: #ffe389;
  font-size: 0.98rem;
  font-family: var(--font-body);
}

/********************************************
   COOKIE CONSENT BANNER
*********************************************/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 18000;
  background: rgba(255,253,244,0.98);
  backdrop-filter: blur(2px);
  box-shadow: 0 -1px 16px #23496c10;
  border-top: 5px solid var(--accent);
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 10px;
  transition: transform .36s cubic-bezier(.76,.19,.28,.92);
  font-size: 1.03rem;
}
.cookie-banner.hidden {
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-banner .cookie-text {
  margin-right: 18px;
  color: #23496C;
  font-family: var(--font-body);
  font-size: 1rem;
  max-width: 350px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: 14px;
  border: none;
  margin: 0;
  cursor: pointer;
  background: var(--accent);
  color: #23496C;
  box-shadow: 0 2px 8px #f7b32b30;
  transition: background .2s, color .2s, box-shadow .2s;
}
.cookie-banner button:focus, .cookie-banner button:hover {
  background: #ffe389;
  color: #23496C;
}
.cookie-banner .settings {
  font-family: var(--font-display);
  color: #23496C;
  background: #fff;
  border: 1px solid #ffe389;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #ffe389;
}

/********* COOKIE MODAL ******/
.cookie-modal-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(35,73,108,.30);
  z-index: 19000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .25s;
}
.cookie-modal {
  background: #fff9ea;
  border-radius: 23px;
  box-shadow: 0 4px 40px #23496c20;
  padding: 34px 26px 28px 26px;
  min-width: 340px;
  max-width: 98vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal h2 {
  color: #23496C;
  margin-bottom: 8px;
  font-size: 1.35rem;
}
.cookie-modal .category {
  margin-bottom: 19px;
}
.cookie-modal label {
  font-weight: 600;
  font-family: var(--font-display);
  color: #23496C;
  font-size: 1.04rem;
}
.cookie-modal .toggle {
  margin-left: 14px;
}
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 9px;
  align-items: center;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #ffe389;
  color: #23496C;
  border: none;
  border-radius: 99px;
  width: 40px;
  height: 40px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 6px #f7b32b24;
  transition: background .2s, color .2s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #23496C;
  color: #ffe389;
}

/********************************************
   FLEX LAYOUTS (CRITICAL SPACING)
*********************************************/
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/********************************************
   GENERAL CARDS, BUTTONS, EFFECTS, ARTISTIC
*********************************************/
.card, .service-list > div, .feature-grid > div,
.process-timeline > div, .faq-list > div, .testimonial-card {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  background: var(--card-bg);
  transition: box-shadow .21s, transform .14s;
}
.card:hover, .service-list > div:hover, .feature-grid > div:hover,
.process-timeline > div:hover, .faq-list > div:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.025) rotate(-.3deg);
}

button, .cta-button {
  outline: none;
  transition: background .18s, color .18s, box-shadow .15s, transform .15s;
}
button:active, .cta-button:active {
  transform: scale(.97) translateY(2px);
  box-shadow: 0 1px 6px #f7b32b24;
}

/********************************************
   RESPONSIVE - MOBILE FIRST
*********************************************/
@media (max-width: 1070px) {
  .container { max-width: 980px; }
  .feature-grid, .service-list, .process-timeline, .testimonial-list, .faq-list { gap: 16px; }
}
@media (max-width: 900px) {
  .container { max-width: 700px; }
  .feature-grid, .service-list, .process-timeline, .testimonial-list, .faq-list { gap: 12px; }
}
@media (max-width: 850px) {
  .container { max-width: 99vw; }
  .feature-grid > div, .service-list > div, .process-timeline > div, .faq-list > div, .testimonial-card {
    min-width: 210px;
    max-width: 96vw;
    flex: 1 1 95vw;
  }
}
@media (max-width: 768px) {
  .container, .content-wrapper, .text-section {
    padding-left: 0;
    padding-right: 0;
  }
  .section, section { padding: 30px 8px; margin-bottom: 34px; }
  .hero { padding-top: 38px; padding-bottom: 38px; }
  .features .feature-grid, .service-list, .process-timeline, .testimonial-list, .faq-list {
    flex-direction: column;
    gap: 12px;
    justify-content: flex-start;
  }
  .features .feature-grid > div, .service-list > div, .process-timeline > div, .faq-list > div, .testimonial-card {
    min-width: unset;
    max-width: 100vw;
    flex: 1 1 100vw;
    align-items: flex-start;
    margin-bottom: 18px;
  }
  footer .container {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  .cookie-modal {
    min-width: 98vw;
    max-width: 100vw;
    padding: 14px 8px 12px 8px;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.12rem; }
  .hero h1 { font-size: 1.4rem; }
  .section, section, .cta-banner { padding-left: 3px; padding-right: 3px; }
}

/********************************************
   ARTISTIC UNIQUE ELEMENTS
*********************************************/
.features .feature-grid > div:before {
  content: '';
  display: block;
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: 20px;
  top: 19px;
  opacity: .11;
}
.features .feature-grid > div:after {
  content: '';
  display: block;
  width: 36px; height: 7px;
  background: var(--highlight);
  border-radius: 99px;
  position: absolute;
  right: 17px;
  bottom: 18px;
  opacity: .12;
}
.testimonial-card:before {
  content: '\201C';
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 2.4rem;
  position: absolute;
  left: 18px; top: 12px;
  opacity: 0.16;
}
.process-timeline > div:after {
  content: '';
  position: absolute;
  right: 26px;
  bottom: 18px;
  width: 34px;
  height: 7px;
  background: var(--accent);
  border-radius: 99px;
  opacity: 0.09;
}
.service-list > div:after {
  content: '';
  position: absolute;
  left: 16px;
  top: 18px;
  width: 16px; height: 8px;
  background: var(--highlight);
  border-radius: 6px;
  opacity: .10;
}

/********************************************
   FOCUS VISIBLE FOR ACCESSIBILITY
*********************************************/
a:focus, button:focus, .cta-button:focus, .mobile-menu-close:focus {
  outline: 2.5px solid var(--highlight);
  outline-offset: 2px;
  z-index: 1;
}

/********************************************
   CUSTOM SCROLLBAR (BROWSERS SUPPORTING IT)
*********************************************/
::-webkit-scrollbar {
  width: 10px;
  background: #f7b32b10;
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 8px;
}

/********************************************
   UTILITY CLASSES
*********************************************/
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; } 
.mb-16 { margin-bottom: 16px !important; } 
.mt-32 { margin-top: 32px !important; }
.nowrap { white-space: nowrap; }

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