/* RESET & BASE TYPOGRAPHY */
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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F5F7FB;
  color: #222;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
a {
  color: #226FB3;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #F8B400;
}
ul, ol {
  list-style: disc inside;
  padding-left: 16px;
  margin-bottom: 20px;
}
strong { font-weight: 700; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  line-height: 1.15;
  color: #1C2438;
  letter-spacing: 0.5px;
}
h1 {font-size: 2.5rem; font-weight: 800; margin-bottom: 16px;}
h2 {font-size: 2rem; font-weight: 700; margin-bottom: 12px;}
h3 {font-size: 1.4rem; font-weight: 600; margin-bottom: 10px;}
h4 {font-size: 1.18rem; font-weight: 600;}

/* CONTAINER SYSTEM */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  padding-top: 24px;
  padding-bottom: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(28,36,56,0.04);
  position: relative;
  z-index: 11;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo img {
  height: 48px;
}
.main-nav {
  display: flex;
  gap: 26px;
  margin-left: 30px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #1C2438;
  letter-spacing: 0.01em;
  font-weight: 500;
  position: relative;
  padding-bottom:3px;
}
.main-nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #F8B400;
  transition: width .3s;
  position: absolute;
  left: 0;
  bottom:0;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 100%;
}
.cta-btn {
  background: #F8B400;
  color: #1C2438;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 34px;
  border: none;
  padding: 11px 34px;
  box-shadow: 0 2px 12px rgba(248,180,0,0.12);
  margin-left: 28px;
  transition: background .16s, box-shadow .25s, color .17s;
  cursor: pointer;
  letter-spacing: 0.02em;
  display: inline-block;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #226FB3;
  color: #fff;
  box-shadow: 0 4px 18px rgba(34,111,179,0.13), 0 2px 12px rgba(248,180,0,0.10);
}
.mobile-menu-toggle {
  font-size: 2rem;
  color: #226FB3;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 18px;
  display: none;
  transition: color .2s;
  z-index: 15;
}
.mobile-menu-toggle:focus{
  outline: 2px solid #F8B400;
}

/* MOBILE NAVIGATION */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #1C2438;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(.82,.01,.13,1), opacity 0.25s;
  z-index: 1200;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #F8B400;
  background: none;
  border: none;
  cursor: pointer;
  margin: 30px 0 20px 30px;
  align-self: flex-start;
  transition: color .2s;
  outline:none;
}
.mobile-menu-close:focus{
  outline:2px dashed #F8B400;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 29px;
  margin: 36px 0 0 44px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 5px 0;
  transition: color .19s, background .17s;
  border-radius: 9px;
  outline: none;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #F8B400;
  background: rgba(248,180,0,0.09);
}

@media (max-width: 1000px) {
  .main-nav {
    gap: 17px;
    margin-left: 10px;
  }
  .cta-btn {
    margin-left: 10px;
    padding: 11px 17px;
  }
  .container { padding-left: 12px; padding-right: 12px; }
}
@media (max-width: 900px) {
  header .container { flex-direction: row; }
}
@media (max-width: 800px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: inline-block; }
  .cta-btn { margin-left: 0; }
}

@media (max-width: 520px) {
  header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }
  .logo img { height: 39px; }
}

/* HERO SECTIONS */
.hero {
  background: linear-gradient(103deg, #1C2438 0%, #226FB3 80%, #F8B400 100%);
  color: #fff;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0 0 38px 38px;
  box-shadow: 0 6px 40px rgba(28,36,56,0.08);
  margin-bottom: 48px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px 10px 55px 10px;
}
.hero h1 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  text-shadow: 0 7px 40px #1C243833, 0 1px 2px #226FB340;
}
.hero p {
  color: #fff;
  font-size: 1.18rem;
  font-weight: 500;
  margin-bottom: 17px;
  letter-spacing: 0.02em;
}
.hero .cta-btn {
  margin-top: 7px;
  box-shadow: 0 3px 15px rgba(248,180,0,0.19);
}

/* FEATURES SECTION */
.features {
  background: #fff;
  border-radius: 27px;
  box-shadow: 0 5px 24px 0 rgba(28,36,56,0.07);
  margin-bottom: 60px;
}
.features .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.features h2 {
  margin-bottom: 21px;
  font-size: 2rem;
  color: #1C2438;
}
.feature-grid,
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 26px;
}
.feature-grid > div,
.feature-list > div {
  background: #F5F7FB;
  border-radius: 19px;
  box-shadow: 0 3px 18px 0 rgba(34,111,179,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 28px 20px 22px 20px;
  flex: 1 1 250px;
  min-width: 245px;
  max-width: 320px;
  transition: box-shadow .22s, transform .18s;
  position: relative;
  border-left: 6px solid #F8B400;
}
.feature-grid > div:hover,
.feature-list > div:hover {
  box-shadow: 0 8px 30px #1c243813;
  transform: translateY(-4px) scale(1.017);
}
.feature-grid img,
.feature-list img {
  height: 42px;
  width: 42px;
  margin-bottom: 6px;
}
.feature-grid h3,
.feature-list h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #226FB3;
  font-size: 1.17rem;
  font-weight: 700;
}
.features p {
  font-size: 1rem;
  color: #4B5871;
  margin-bottom: 0;
}
@media (max-width: 1050px) {
  .feature-grid,.feature-list {gap: 19px;}
}
@media (max-width: 900px) {
  .feature-grid > div, .feature-list > div {
    min-width: 180px; max-width: 100%;
  }
}
@media (max-width: 768px) {
  .feature-grid, .feature-list {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div, .feature-list > div {
    width: 100%;
    max-width: 97vw;
    min-width: 0;
    padding: 18px 14px 17px 13px;
  }
}

/* SERVICES & CARDS */
.services {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 28px 0 rgba(248,180,0,0.09);
  margin-bottom: 60px;
}
.services .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.services h2, .services h1 {
  margin-bottom: 21px;
  font-size: 2rem;
  color: #226FB3;
}
.services ul {
  margin-bottom: 26px;
}
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 28px;
}
.service-grid > div {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  flex: 1 1 250px;
  min-width: 255px;
  max-width: 330px;
  background: #1C24381a;
  border-radius: 17px;
  padding: 26px 16px 22px 16px;
  box-shadow: 0 2px 10px #226FB330;
  border-bottom: 6px solid #226FB3;
  position: relative;
  transition: box-shadow .17s, transform .15s;
}
.service-grid > div:hover {
  box-shadow: 0 7px 32px #226FB31b;
  transform: scale(1.018) translateY(-3px);
}
.service-grid img {
  height: 42px;
  width: 42px;
  margin-bottom: 3px;
}
.service-grid h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F8B400;
  font-size: 1.08rem;
  font-weight: 700;
}
.service-grid p {
  color: #333;
  font-size: 1.01rem;
}
@media (max-width: 1024px) {
  .service-grid {gap: 16px;}
}
@media (max-width: 768px) {
  .service-grid {
    flex-direction: column;
    gap: 19px;
  }
  .service-grid > div {
    width: 100%;
    min-width: 0;
    max-width: 97vw;
    padding: 15px 7px 13px 8px;
  }
}

/* BLOG POST GRID */
.blog-post-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.blog-post-grid article {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 rgba(34,111,179,0.08);
  padding: 23px 18px 19px 18px;
  flex: 1 1 260px;
  max-width: 310px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .23s, transform .18s;
  border-left: 5px solid #226FB3;
}
.blog-post-grid article:hover {
  box-shadow: 0 7px 22px 0 #F8B40025;
  transform: translateY(-6px) scale(1.018);
}
.blog-post-grid h3 {
  margin-bottom: 7px;
  color: #226FB3;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.blog-post-grid p {
  color: #31344a;
  font-size: 0.98rem;
}
.blog-post-grid a {
  display: inline-block;
  font-size: 0.93rem;
  margin-top: 6px;
  color: #F8B400;
  font-weight: 600;
  transition: color .14s;
}
.blog-post-grid a:hover {
  color: #226FB3;
}
@media (max-width: 800px) {
  .blog-post-grid {flex-direction: column;gap: 17px;}
  .blog-post-grid article{max-width:97vw;}
}

.categories-list {
  margin-bottom: 20px;
}
.categories-list h4 {
  font-size: 1.1rem;
  color: #1C2438;
  font-weight: 700;
  margin-bottom: 10px;
}
.categories-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-left: 0;
  font-size: 0.97rem;
}
.categories-list li {
  background: #F8B4001b;
  color: #226FB3;
  border-radius: 10px;
  padding: 4px 14px;
  letter-spacing: .03em;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* CARD PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 12px 0 rgba(28,36,56,0.04);
  overflow: hidden;
  padding: 26px 18px 21px 18px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .16s;
  min-width: 220px;
  max-width: 320px;
}
.card:hover {
  box-shadow: 0 6px 28px #F8B40017;
  transform: scale(1.018);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 11px;
}

.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: 800px) {
  .text-image-section { flex-direction: column; gap: 20px; }
  .content-grid { flex-direction: column; gap: 20px; }
  .card-container { flex-direction: column; gap: 19px; }
}

/* TESTIMONIALS */
.testimonials {
  background: #226FB311;
  border-radius: 23px;
  box-shadow: 0 1px 11px #1C24380d;
  margin-bottom: 60px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 31px;
  align-items: flex-start;
}
.testimonials h2 {
  font-size: 2rem;
  color: #1C2438;
  margin-bottom: 12px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px 20px 18px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 11px #226FB330;
  margin-bottom: 0;
  position: relative;
  min-width: 230px;
  max-width: 750px;
  width: 100%;
  flex-wrap: wrap;
  border-left: 5px solid #226FB3;
}
.testimonial-card p {
  color: #1C2438;
  font-size: 1.09rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 0;
  font-weight: 500;
}
.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-left: 17px;
}
.testimonial-info strong {
  color: #226FB3;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
.testimonial-info span {
  color: #888;
  font-size: 0.94rem;
}
@media (max-width: 850px) {
  .testimonial-card { flex-direction: column; padding: 17px 9px 17px 9px; gap: 12px; }
  .testimonials .content-wrapper { gap: 22px; }
}

/* CTA SECTION */
.cta {
  background: #F8B400;
  border-radius: 22px;
  color: #1C2438;
  box-shadow: 0 4px 32px #226FB323, 0 2px 7px #F8B40010;
  margin-bottom: 48px;
  text-align: center;
}
.cta h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1C2438;
  margin-bottom: 16px;
  text-shadow: 0 1px 7px #f5e6c0cc;
}
.cta p {
  font-size: 1.11rem;
  color: #1C2438;
  font-weight: 500;
  margin-bottom: 23px;
}
.cta .cta-btn { margin-top: 0; }

/* CONTACT DETAILS */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 17px;
  font-size: 1.05rem;
  color: #226FB3;
  background: #fff;
  border-radius: 14px;
  padding: 12px 19px;
  box-shadow: 0 1px 7px #1c24380d;
}
.contact-details img {
  vertical-align: middle;
  margin-right: 10px;
  height: 23px;
}
.map-embed {
  background: #F5F7FB;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 15px;
  color: #434;
}
.cta-section {
  display: flex; flex-direction: row; gap: 18px; margin-top: 20px; align-items: center; flex-wrap: wrap;
}
.cta-section .cta-btn {
  margin-top: 0;
}

/* LEGAL & INFO PAGES */
.legal {
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 3px 18px #1C24381a;
  margin-bottom: 57px;
}
.legal .content-wrapper {
  padding-top: 28px;
  padding-bottom: 28px;
}
.legal-text h2 {
  font-size: 1.3rem;
  color: #226FB3;
  margin: 27px 0 6px 0;
}
.legal-text p, .legal-text li {
  font-size: 1.03rem;
  color: #31344a;
  margin-bottom: 10px;
}
.legal-text ul {margin-bottom: 16px;}
blockquote {
  background: #F8B40021;
  border-left: 5px solid #F8B400;
  font-style: italic;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 15px 19px 15px 15px;
  border-radius: 12px;
  font-size: 1.07rem;
  color: #1C2438;
  margin-top: 17px; margin-bottom: 17px;
}
.metrics-highlights ul, .results-statistics ul {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  font-size: 1.01rem;
  margin-bottom: 12px;
}
.metrics-highlights li, .results-statistics li {
  background: #226FB312;
  color: #226FB3;
  padding: 8px 18px;
  border-radius: 13px;
  font-weight: 700;
}
@media (max-width: 700px) {
  .metrics-highlights ul, .results-statistics ul { gap: 9px; flex-direction: column; }
}

/* FOOTER */
footer {
  background: #1C2438;
  color: #fff;
  padding-top: 32px;
  padding-bottom: 22px;
  margin-top: 30px;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -6px 20px #226FB323;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid #2a395c6c;
  margin-bottom: 16px;
  gap: 15px;
}
.footer-top img { height: 38px; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  font-size: 1.07rem;
}
.footer-nav a {
  color: #F8B400;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color .13s;
}
.footer-nav a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.01rem;
  color: #fac600;
}
.contact-info img {
  vertical-align: middle;
  margin-right: 6px;
  height: 18px;
}
.social-icons {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
  margin-top: 7px;
}
.social-icons a {
  display: flex;
  background: #fff;
  border-radius: 50%;
  padding: 8px;
  transition: background .18s, box-shadow .15s;
  box-shadow: 0 1px 8px #F8B40023;
  border: 2px solid #F8B40000;
}
.social-icons a:hover, .social-icons a:focus {
  background: #F8B400;
  box-shadow: 0 2px 16px #226FB333;
  border: 2px solid #F8B400;
}
.social-icons img {
  width: 22px;
  height: 22px;
}
.footer-copy {
  font-size: .98rem;
  color: #bbb;
  margin-top: 13px;
  text-align: center;
}
@media (max-width:1024px) {
  .footer-bottom {gap: 19px;}
}
@media (max-width:800px) {
  .footer-top, .footer-bottom {flex-direction: column; align-items: flex-start; gap:10px;}
}

/* FORM ELEMENTS */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  border: 1.5px solid #226FB333;
  border-radius: 9px;
  padding: 9px 12px;
  margin-bottom: 14px;
  font-size: 1rem;
  transition: border-color .15s;
  color: #1C2438;
  background: #fff;
}
input:focus, textarea:focus, select:focus {
  border-color: #226FB3;
  outline: none;
}
button {
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 10px;
  transition: background .18s, color .15s;
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #1C2438;
  color: #fff;
  padding: 17px 16px 17px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  z-index: 1212;
  box-shadow: 0 -4px 22px #1C24389e;
  font-size: 1rem;
  gap: 18px;
  opacity: 1;
  transition: opacity 0.4s;
}
.cookie-consent-banner.hide { opacity: 0; pointer-events: none; }
.cookie-banner-message {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.03rem;
  color: #fff;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-btn {
  background: #F8B400;
  color: #1C2438;
  font-size: 1em;
  font-weight: 600;
  border-radius: 8px;
  padding: 7px 21px;
  border: none;
  transition: background .17s, color .15s;
  cursor:pointer;
  outline:none;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #226FB3;
  color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  color: #226FB3;
  border: 2px solid #226FB3;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #226FB3;
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.97rem;
    padding: 13px 8px 16px 8px;
  }
  .cookie-banner-actions {
    gap: 8px;
  }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; width:100vw; height:100vh;
  background: rgba(28,36,56,0.76);
  z-index:1300;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  animation: fadeInModal .16s;
}
.cookie-modal {
  background: #fff;
  color: #1C2438;
  border-radius: 21px;
  box-shadow: 0 9px 46px 0 #1C243899,0 2px 15px #F8B40022;
  max-width: 410px;
  width: 94vw;
  padding: 34px 25px 25px 25px;
  z-index:1301;
  display:flex; flex-direction:column; gap: 22px;
  animation: popUpModal .27s cubic-bezier(.45,1.3,.55,.97);
}
@keyframes fadeInModal { from { opacity: 0;} to { opacity: 1;} }
@keyframes popUpModal { 0%{transform:scale(.82);} 100%{transform:scale(1);} }
.cookie-modal h2 {
  font-size: 1.32rem;
  color: #226FB3;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.cookie-category {
  font-size: 1.04rem;
  margin-bottom: 9px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #226FB3;
  width: 17px;
  height: 17px;
}
.cookie-category .essential {
  color: #226FB3;
  font-weight: 700;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 13px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  right: 21px;
  top:18px;
  font-size: 1.4rem;
  color: #226FB3;
  background: none;
  border: none;
  cursor:pointer;
  outline:none;
  z-index: 1401;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {color: #F8B400;}
@media (max-width:500px){
  .cookie-modal { max-width:97vw; padding: 25px 7px 19px 7px; }
}

/* RESPONSIVE FONT SIZES */
@media (max-width: 600px) {
  h1 {font-size: 1.75rem;}
  h2 {font-size: 1.27rem;}
  h3 {font-size: 1.01rem;}
  .cta h2 {font-size: 1.31rem;}
  .hero {padding: 18px 0 !important;}
}

/* SPACING UTILITY */
.mb-20 {margin-bottom: 20px !important;}
.mt-20 {margin-top: 20px !important;}
.mb-40 {margin-bottom: 40px !important;}
.mt-40 {margin-top: 40px !important;}
.gap-20 {gap: 20px !important;}

/* MICRO-INTERACTIONS */
button, .cta-btn, .cookie-btn, .footer-nav a, .main-nav a, .social-icons a {
  transition: background .18s, color .12s, box-shadow .23s, border .15s, transform .13s;
}

/* UNIQUE DESIGN TOUCHES */
/* Inspired bold underline for hero headings */
.hero h1::after {
  content: '';
  display: block;
  width: 65px;
  height: 6px;
  background: #F8B400;
  border-radius: 9px;
  margin: 16px auto 0 auto;
}
@media (max-width: 500px){
  .hero h1::after{width:40px;height:4px;}
}

/* Artistic font for key headers */
.hero h1, .cta h2, .features h2, .testimonials h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 1.2px;
  text-transform: none;
}

/* Delicious shadow for .card, .feature-grid, .service-grid */
.card, .feature-grid > div, .service-grid > div {
  box-shadow: 0 2px 12px 0 rgba(28,36,56,0.04), 0 1px 5px 0 #F8B40020;
}

/* --- END OF CSS FILE --- */
