/* 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,
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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.7;
  font-size: 16px;
  background: #F5F9FC;
  color: #313131;
  font-family: 'Open Sans', Arial, sans-serif;
  min-width: 320px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1063B2;
  text-decoration: none;
  transition: color .2s;
}
a:hover { color: #0b4378; }
ul, ol { margin-left: 1.2em; margin-bottom: 1em; }
strong, b { font-weight: 700; }
blockquote {
  font-style: italic;
  border-left: 4px solid #1063B2;
  padding-left: 16px;
  color: #313131;
  margin-bottom: 12px;
}

/* TYPOGRAPHY ================================================================*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #1063B2;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.3rem;
  margin-bottom: 16px;
  line-height: 1.15;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 10px;
}
p, ul, ol, li {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #313131;
}
.text-section {
  max-width: 750px;
  margin: 0 auto 32px auto;
}
.text-section ul, .text-section ol {
  margin-bottom: 16px;
}

/* CONTAINER & LAYOUT UTILS ===================================================*/
.container {
  width: 95%;
  max-width: 1160px;
  margin: 0 auto;
}
.content-wrapper, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.content-grid { justify-content: space-between; }
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 24px rgba(16,99,178,0.16);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s;
}
.card:hover {
  box-shadow: 0 6px 32px rgba(16,99,178,0.20);
  z-index:2;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1px 10px 0 rgba(16,99,178,0.09);
  padding: 20px;
  margin-bottom: 24px;
  min-width: 240px;
  max-width: 400px;
  transition: transform .17s, box-shadow .2s;
}
.testimonial-card:hover { box-shadow: 0 4px 26px 0 rgba(16,99,178,0.13); transform: translateY(-2px) scale(1.012); }
.testimonial-author {
  font-weight: 600;
  font-size: 1rem;
  color: #1063B2;
  letter-spacing: .1px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F5F9FC;
  border-radius: 14px;
  box-shadow: 0 1px 10px rgba(16,99,178,0.08);
  padding: 20px 18px;
  min-width: 210px;
  flex: 1 0 210px;
  transition: box-shadow .2s, transform .2s;
}
.feature-item img {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 2px 2px rgba(16,99,178,0.10));
}
.feature-item h3 {
  color: #313131;
  font-size: 1.1rem;
}
.feature-item:hover { box-shadow: 0 4px 24px 0 rgba(16,99,178,0.13); transform: translateY(-4px) scale(1.025); }

/* HERO SECTION ===============================================================*/
.hero {
  background: linear-gradient(135deg, #1063B2 70%, #1e7bc6 100%);
  padding: 60px 0 40px 0;
  color: #fff;
  overflow: hidden;
}
.hero .container { position: relative; }
.hero h1 { color: #fff; font-size: 2.6rem; letter-spacing: -1px; }
.hero p { font-size: 1.25rem; margin-bottom: 35px; color: #fff; }
.hero .cta {
  background: #fff;
  color: #1063B2;
  border: none;
  font-weight: 800;
  padding: 16px 42px;
  border-radius: 40px;
  font-size: 1.2rem;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 2px 15px rgba(16,99,178,0.12);
  transition: background .18s, color .16s, box-shadow .23s;
  cursor: pointer;
}
.hero .cta:hover, .hero .cta:focus {
  background: #1063B2;
  color: #fff;
  box-shadow: 0 6px 28px #07406d15;
}

/* NAVIGATION ================================================================*/
header {
  background: #fff;
  box-shadow: 0 2px 11px rgba(16,99,178,0.15);
  z-index: 80;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  position: relative;
}
.logo img, .logo-footer img { height: 44px; }
.logo { margin-right: 24px; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  color: #1063B2;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 30px;
  padding: 9px 16px;
  background: none;
  position: relative;
  transition: background .14s, color .14s;
}
.main-nav a.cta {
  background: #1063B2;
  color: #fff;
  box-shadow: 0 1px 10px rgba(16,99,178,0.08);
  font-weight: 800;
}
.main-nav a.cta:hover, .main-nav a.cta:focus { background: #15487e; }
.main-nav a:hover:not(.cta), .main-nav a:focus:not(.cta) {
  background: #EAF3FA;
  color: #073f73;
}

/* MOBILE NAV MENU -----------------------------------------------------------*/
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: none;
  font-size: 2.1rem;
  cursor: pointer;
  color: #1063B2;
  line-height: 1;
  padding: 4px 10px;
  border-radius: 50%;
  box-shadow: 0 1px 6px #07406d09;
  transition: background .17s, box-shadow .23s;
  z-index: 130;
}
.mobile-menu-toggle:active { background: #EAF3FA; }
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #f5f9fc;
  transform: translateX(-100vw);
  transition: transform .38s cubic-bezier(.78,.13,.34,1.09);
  display: flex;
  flex-direction: column;
  z-index: 120;
  box-shadow: 3px 0 38px 0 rgba(16,99,178,0.06);
  padding: 36px 22px 20px 22px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #1063B2;
  font-size: 2.3rem;
  align-self: flex-end;
  margin-bottom: 15px;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}
.mobile-nav a {
  color: #1063B2;
  font-family: 'Montserrat', sans-serif;
  border-radius: 10px;
  font-size: 1.18rem;
  font-weight: 700;
  padding: 12px 4px;
  background: none;
  transition: background .17s, color .13s;
  margin-left: 0;
  margin-right: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #EAF3FA;
  color: #09529a;
}

/* SECTION SPACING / CONTENT LAYOUT ==========================================*/
.features, .services, .process, .about-section,
.policy, .faq, .pricing, .blog-list, .thank-you,
.contact, .hours, .cta, .testimonials {
  margin-bottom: 60px;
  padding: 40px 0 30px 0;
  width: 100%;
}
.features .feature-grid, .features .audience-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.services .service-cards, .services .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.service-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1px 10px rgba(16,99,178,0.09);
  padding: 22px 17px 29px 17px;
  flex: 1 0 210px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .2s, transform .16s;
  min-width: 210px;
  max-width: 350px;
}
.service-card:hover {
  box-shadow: 0 5px 22px rgba(16,99,178,0.14); transform: translateY(-3px) scale(1.018);
}
.service-card .price {
  color: #1063B2;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-top: 8px;
}
.services .cta-center {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}

.process-steps, .steps {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.process-step {
  background: #EAF3FA;
  border-radius: 14px;
  box-shadow: 0 1px 7px rgba(16,99,178,0.05);
  padding: 22px 17px;
  flex: 1 0 185px;
  min-width: 185px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 18px;
  transition: box-shadow .2s, transform .14s;
}
.process-step img {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
}
.process-step:hover {
  box-shadow: 0 4px 18px 0 rgba(16,99,178,0.09); transform: translateY(-2px) scale(1.018);
}

.faq-item {
  background: #fff;
  border-left: 4px solid #1063B2;
  padding: 19px 24px;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(16,99,178,0.07);
  margin-bottom: 22px;
}

.cta {
  display: inline-block;
  background: #1063B2;
  color: #fff !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 13px 34px;
  border-radius: 40px;
  text-align: center;
  margin: 8px 0;
  outline: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 7px rgba(16,99,178,0.11);
  transition: background .15s, color .14s, box-shadow .12s;
}
.cta:hover, .cta:focus { background: #09529a; color: #fff; }

/* Blog teasers and posts ----------------------------------------------------*/
.blog-teasers, .blog-list .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.blog-post {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 10px rgba(16,99,178,0.08);
  padding: 19px 15px 23px 15px;
  flex: 1 0 230px;
  min-width: 220px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  transition: box-shadow .16s, transform .16s;
}
.blog-post:hover {
  box-shadow: 0 5px 20px rgba(16,99,178,0.10); transform: translateY(-3px) scale(1.015);
}
.read-more {
  color: #1063B2;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  text-decoration: underline;
  margin-top: 12px;
  align-self: flex-start;
  transition: color .16s;
}
.read-more:hover, .read-more:focus { color: #15487e; }
.newsletter-form {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.newsletter-form input[type='email'] {
  flex: 1 1 200px;
  border: 1.5px solid #E6E8EB;
  border-radius: 22px;
  padding: 11px 18px;
  font-size: 1rem;
  outline: none;
  transition: border .17s;
}
.newsletter-form input[type='email']:focus {
  border-color: #1063B2;
}
.newsletter-form button[type='submit'] {
  background: #1063B2;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 10px 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(16,99,178,0.07);
  transition: background .13s, color .14s;
}
.newsletter-form button[type='submit']:hover, .newsletter-form button[type='submit']:focus {
  background: #09529a;
}

/* Testimonial styles --------------------------------------------------------*/
.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.testimonial-card blockquote {
  border: none;
  padding-left: 0;
  color: #222;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

/* Pricing Table -------------------------------------------------------------*/
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.pricing-table table {
  border-collapse: separate;
  border-spacing: 0;
  width: 330px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(16,99,178,0.04);
  margin-bottom: 12px;
  font-size: 1rem;
}
.pricing-table th, .pricing-table td {
  padding: 14px 16px;
  text-align: left;
}
.pricing-table th {
  background: #1063B2;
  color: #fff;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  border-radius: 13px 13px 0 0;
}
.pricing-table tr:nth-child(odd) td { background: #F5F9FC; }
.pricing-table tr td {
  border-bottom: 1px solid #EAF3FA;
}
.policy-text ul, .policy-text ol {
  margin-left: 1.3em;
}
.explanation-icons {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 14px;
}
.explanation-icons img { width: 32px; height: 32px; }

/* CTA Sections --------------------------------------------------------------*/
.cta {
  background: #1063B2;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 13px 34px;
  border-radius: 40px;
  text-align: center;
  margin: 8px 0;
  outline: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 7px rgba(16,99,178,0.11);
  transition: background .15s, color .14s, box-shadow .12s;
  display: inline-block;
}
.cta:hover, .cta:focus { background: #15487e; color: #fff; }

/* Footer ===================================================================*/
footer {
  background: #1063B2;
  color: #fff;
  padding: 28px 0 18px 0;
  font-size: 15px;
  box-shadow: 0 -2px 15px rgba(16,99,178,0.05);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  gap: 20px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  opacity: 0.95;
  transition: text-decoration .16s, color .12s;
}
.footer-nav a:hover { color: #A8D1F2; text-decoration: underline; }
.logo-footer img { height: 34px; }
.footer-copy { flex: 1 1 100%; margin-top: 12px; color: #d6f1ff; }

/* Map & CONTACT INFO --------------------------------------------------------*/
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.map-embed {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 21px;
  padding: 16px 12px;
  background: #EAF3FA;
  border-radius: 12px;
}
.map-embed img { width: 72px; }

/* Thank You / Success ------------------------------------------------------*/
.success-message {
  color: #1063B2;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* COOKIE CONSENT BANNER =====================================================*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 -2px 18px rgba(16,99,178,0.11);
  border-top: 4px solid #1063B2;
  padding: 20px 28px 20px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  animation: cookiebannerin .9s 1 both;
}
@keyframes cookiebannerin {
  0% { transform: translateY(100%); opacity:0; }
  100% { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-text {
  flex: 2 1 220px;
  color: #313131;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-right: 10px;
}
.cookie-buttons {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  padding: 9px 21px;
  border-radius: 20px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background .15s, color .14s;
  outline: none;
}
.cookie-btn.accept {
  background: #1063B2;
  color: #fff;
  box-shadow: 0 2px 7px rgba(16,99,178,0.09);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus { background: #15487e; }
.cookie-btn.reject { background: #F5F9FC; color: #1063B2; border: 1px solid #1063B2; }
.cookie-btn.reject:hover, .cookie-btn.reject:focus { background: #eaf3fa; }
.cookie-btn.settings { background: #fff; color: #1063B2; border: 1px solid #E6E8EB; }
.cookie-btn.settings:hover, .cookie-btn.settings:focus { background: #eaf3fa; }

/* COOKIE MODAL =============================================================*/
.cookie-modal {
  position: fixed; left: 0; top: 0;
  width: 100vw; height: 100vh;
  z-index: 11000;
  background: rgba(49,49,49,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility .2s, opacity .22s;
}
.cookie-modal.open {
  visibility: visible;
  opacity: 1;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 38px rgba(16,99,178,0.14);
  padding: 32px 28px 24px 28px;
  min-width: 320px;
  max-width: 410px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  animation: cookiemodalin .5s 1 both;
}
@keyframes cookiemodalin { 0% { transform: scale(0.6); opacity:0;} 100% { transform: scale(1); opacity:1; } }
.cookie-modal-content h3 {
  color: #1063B2;
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.cookie-category {
  margin: 13px 0 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}
.cookie-category input[type=checkbox] {
  width: 20px; height: 20px;
  accent-color: #1063B2;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 18px;
}
.cookie-modal .cookie-btn { min-width: 112px; }

/* Artistic/Decorative accents ===============================================*/
.hero, .section, .about-section { position: relative; z-index: 1; }
.section:before {
  content: '';
  position: absolute;
  left: -24px; top: -24px;
  width: 98px;
  height: 98px;
  background: #eaf3fa;
  border-radius: 80% 60% 50% 90%;
  opacity: 0.51;
  z-index: 0;
}
.section:after {
  content: '';
  position: absolute;
  right: -18px; bottom: -16px;
  width: 77px;
  height: 77px;
  background: #d9eefd;
  border-radius: 70% 40% 60% 70%;
  opacity: 0.35;
  z-index: 0;
}
.hero:after {
  content: '';
  position: absolute;
  right: -60px;
  top: 18%;
  width: 150px;
  height: 150px;
  border-radius: 60% 55% 90% 70%;
  background: #fff2;
  z-index: 0;
  opacity: 0.24;
}

/* Artistic FONT HEADLINE ACCENTS -------------------------------------------*/
h1, h2, h3 {
  text-shadow:
    1.5px 1.5px 0 #eaf3fa,
    0 2.5px 8px #92c5e52d;
}

/* RESPONSIVE DESIGN ========================================================*/
@media (max-width: 1000px) {
  .main-nav a { font-size: 0.99rem; padding: 7px 10px; }
  .container { max-width: 97vw; }
}
@media (max-width: 900px) {
  .features .feature-grid, .features .audience-grid,
  .services .service-cards, .services .service-list,
  .blog-teasers, .testimonials-list, .pricing-table {
    gap: 14px;
  }
  .process-steps, .steps {
    gap: 14px;
  }
}
@media (max-width: 750px) {
  .main-nav { display: none !important; }
  .mobile-menu-toggle { display: block; position: relative; }
  .container { padding: 0 5px; width: 100vw; }
  .section, .features, .services, .process, .about-section, .policy, .faq, .pricing,
  .blog-list, .thank-you, .contact, .hours, .cta, .testimonials { padding: 30px 2vw 15px 2vw; }
  footer .container { flex-direction: column; gap: 18px; align-items: flex-start; }
  .logo img, .logo-footer img { height: 38px; }
  .footer-copy { margin-top: 10px; font-size: 0.98rem; }
}
@media (max-width: 650px) {
  .content-wrapper, .content-grid, .feature-grid, .service-cards, .service-list,
  .audience-grid, .blog-teasers, .testimonials-list, .pricing-table {
    flex-direction: column !important;
    gap: 16px !important;
  }
  .process-steps, .steps { flex-direction: column; gap: 13px; }
  .testimonials-list { gap: 12px; }
  .newsletter-form { flex-direction: column; gap: 7px; }
}
@media (max-width: 540px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 0.98rem; }
  .cookie-modal-content { min-width: 94vw; padding: 18px 7vw 16px 6vw; }
}
@media (max-width: 450px) {
  .hero { padding: 34px 0 20px 0; }
  .service-card, .feature-item, .process-step, .testimonial-card, .blog-post {
    padding: 10px 7px;
    min-width: 0; max-width: 99vw;
  }
  .cookie-banner { padding: 14px 4vw 14px 4vw; gap: 10px; flex-direction: column; align-items: flex-start; }
}

/* ANIMATION UTILITIES =======================================================*/
.fade-in {
  animation: fadein .9s 1 both;
}
@keyframes fadein { 0%{opacity:0;} 100%{opacity:1;} }

/* STYLE FOR ACCESSIBILITY --------------------------------------------------*/
:focus {
  box-shadow: 0 0 0 3px #b3defa69;
  outline: 2px solid #1063B2; outline-offset: 0px;
}

/* MICROINTERACTIONS --------------------------------------------------------*/
button, .cta, .cookie-btn, .newsletter-form button, .mobile-menu-toggle {
  transition: background .16s, color .13s, box-shadow .19s, transform .13s;
}

/* SPECIAL CLASSES ==========================================================*/
.cta-center { display: flex; justify-content: center; align-items: center; padding: 0; }
.text-center { text-align: center; }

/* Z-INDEX STRATA -----------------------------------------------------------*/
header, .mobile-menu, .cookie-banner, .cookie-modal { z-index: 110 !important; }

/* COLOR PALETTE HIGHLIGHTS FOR CREATIVE ARTISTIC ---------------------------*/
/* Add splashes of accent color (e.g., boxes, section backgrounds) */
.feature-item:nth-child(even), .process-step:nth-child(odd) {
  background: #eaf3fa;
}
.service-card:nth-child(even), .audience-item:nth-child(2n) {
  background: #eaf3fa;
}

/* Artistic, organic accent dots for sections */
.section:before, .section:after, .hero:after { pointer-events: none; }

