/* ---- CSS 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F5F5F5;
  font-family: 'Roboto', Arial, sans-serif;
  color: #1A3252;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
a {
  color: #E8912D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #B36915;
  text-decoration: underline;
}
ul,
ol {
  padding-left: 1.2em;
}
button {
  font-family: inherit;
  cursor: pointer;
  outline: none;
  border: none;
  background: none;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #1A3252;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.25rem; /* 36px */
  line-height: 1.15;
}
h2 {
  font-size: 1.5rem; /* 24px */
}
h3 {
  font-size: 1.125rem; /* 18px */
}
h4, h5, h6 {
  font-size: 1rem;
}
p, li, td, th {
  font-size: 1rem; /* 16px */
  color: #1A3252;
}
strong {
  font-weight: 700;
}
em {
  color: #E8912D;
  font-style: normal;
}

/* ---- Container & Wrapper ---- */
.container {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ---- Layout Spacing (Mandatory Patterns) ---- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 22px rgba(26,50,82,0.06);
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(26,50,82,0.12);
  margin-bottom: 20px;
  min-width: 220px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ---- Header Navigation ---- */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(26,50,82,0.04);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  position: relative;
  z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  min-height: 68px;
}
.logo img {
  height: 46px;
}
.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav-links a {
  padding: 8px 12px;
  border-radius: 16px;
  font-weight: 500;
  color: #1A3252;
  transition: background 0.2s, color 0.2s;
}
.nav-links a.cta-primary {
  background: #E8912D;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 3px 15px rgba(232,145,45,0.16);
  border-radius: 22px;
  padding: 10px 20px;
  margin-left: 16px;
  transition: background 0.2s, box-shadow 0.2s;
}
.nav-links a.cta-primary:hover,
.nav-links a.cta-primary:focus {
  background: #B36915;
  box-shadow: 0 6px 22px rgba(232,145,45,0.22);
}
.nav-links a:hover:not(.cta-primary),
.nav-links a:focus:not(.cta-primary) {
  background: #F8E6D0;
  color: #E8912D;
}
.main-nav .mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: #fff;
  color: #E8912D;
  border-radius: 10px;
  padding: 4px 12px;
  margin-left: 16px;
  border: 1px solid #F5F5F5;
  transition: background 0.18s, color 0.18s;
}
.main-nav .mobile-menu-toggle:focus,
.main-nav .mobile-menu-toggle:hover {
  background: #FFE5C0;
  color: #B36915;
}

/* ---- Mobile Navigation ---- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,50,82,0.74);
  z-index: 1500;
  transition: opacity 0.35s ease;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.4s;
}
.mobile-menu nav {
  background: #fff;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 4px 20px rgba(232,145,45,0.13);
  padding: 60px 10vw 40px 10vw;
  width: 100vw;
  max-width: 410px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateX(-110%);
  transition: transform 0.33s cubic-bezier(0.6,0,0.4,1);
}
.mobile-menu.active nav {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  left: 32px; top: 32px;
  font-size: 2rem;
  background: #FFE5C0;
  color: #E8912D;
  border-radius: 50%;
  width: 42px; height: 42px;
  display: flex;
  align-items: center; justify-content: center;
  border: 1px solid #FFE5C0;
  box-shadow: 0 2px 10px rgba(26,50,82,0.07);
  cursor: pointer;
  z-index: 1800;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #E8912D;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 35px;
}
.mobile-nav a {
  color: #1A3252;
  font-size: 1.1rem;
  padding: 10px 0;
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F8E6D0;
  color: #E8912D;
}
.mobile-nav a:last-child {
  margin-bottom: 24px;
}

@media (max-width: 1024px) {
  .nav-links {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .nav-links a {
    padding: 8px 8px;
    font-size: 1rem;
  }
}
@media (max-width: 820px) {
  .main-nav .nav-links {
    display: none;
  }
  .main-nav .mobile-menu-toggle {
    display: block;
  }
  .logo img {
    height: 40px;
  }
}

/* ---- Hero Section ---- */
.hero {
  background: linear-gradient(110deg, #FFF9F3 60%, #FFE5C0 100%);
  border-radius: 0 0 36px 36px;
  padding: 48px 0 36px 0;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 600px;
  gap: 30px;
  margin-top: 12px;
}
.hero h1 {
  font-size: 2.5rem;
  font-family: 'Lato', sans-serif;
  color: #1A3252;
}
.hero p {
  font-size: 1.25rem;
  color: #3B4378;
  margin-bottom: 19px;
}

/* ---- CTA Primary Button ---- */
.cta-primary {
  background: #E8912D;
  color: #fff !important;
  font-family: 'Lato', 'Roboto', sans-serif;  
  font-size: 1.07rem;
  border-radius: 28px;
  padding: 12px 28px;
  box-shadow: 0 2px 12px rgba(232,145,45,0.17);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background 0.2s, box-shadow 0.2s, transform 0.13s;
  border: none;
  display: inline-block;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #B36915;
  box-shadow: 0 6px 26px rgba(232,145,45,0.22);
  color: #fff;
  transform: translateY(-1px) scale(1.03);
}

/* ---- Features ---- */
.features {
  margin-bottom: 60px;
  padding: 40px 0;
  background: #FDF6EE;
  border-radius: 28px;
  box-shadow: 0 2px 16px rgba(26,50,82,0.07);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.feature {
  flex: 1 1 220px;
  min-width: 220px;
  background: #fff;
  border-radius: 18px;
  padding: 24px 18px;
  box-shadow: 0 2px 12px rgba(232,145,45,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}
.feature h3 {
  color: #E8912D;
  font-size: 1.12rem;
}
.feature:hover {
  box-shadow: 0 8px 26px rgba(232,145,45,0.14);
  transform: translateY(-3px) scale(1.031);
}
/* feature-list */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.feature-list li {
  display: flex;
  align-items: center;
  font-size: 1.03rem;
  background: #fff;
  border-radius: 12px;
  padding: 13px 15px;
  box-shadow: 0 1px 6px rgba(232,145,45,0.05);
  gap: 10px;
  color: #1A3252;
}
.feature-list img {
  width: 32px; height: 32px; border-radius: 6px;
}

/* ---- Cards and Card Grids ---- */
.service-cards,
.team-member-cards,
.blog-post-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.service-card,
.team-member-card,
.blog-post-card {
  flex: 1 1 220px;
  min-width: 230px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 1px 10px rgba(26,50,82,0.08);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.18s, transform 0.17s;
}
.service-card img, .team-member-card img {
  width: 42px; height: 42px; margin-bottom: 7px;
}
.service-card h3,
.team-member-card h3,
.blog-post-card h2 {
  font-size: 1.12rem;
  color: #E8912D;
  margin-bottom: 4px;
  line-height: 1.25;
}
.service-card:hover,
.team-member-card:hover,
.blog-post-card:hover {
  box-shadow: 0 8px 26px rgba(232,145,45,0.12);
  transform: translateY(-2px) scale(1.019);
}

/* ---- Table ---- */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 12px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(232,145,45,0.08);
}
.pricing-table th {
  background: #FFE5C0;
  color: #1A3252;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  padding: 15px 12px;
  text-align: left;
  font-size: 1rem;
}
.pricing-table td {
  padding: 15px 12px;
  font-size: 1rem;
  background: #fff;
}
.pricing-table tr:not(:last-child) td {
  border-bottom: 1px solid #F5F5F5;
}

/* ---- Testimonials ---- */
.testimonials {
  margin-bottom: 60px;
  background: #FFF9F3;
  padding: 40px 0;
  border-radius: 22px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.testimonial-card {
  background: #fff;
  color: #1A3252;
  border-radius: 22px;
  box-shadow: 0 2px 12px rgba(26,50,82,0.09);
  min-width: 240px;
  max-width: 330px;
  flex: 1 1 240px;
}
.testimonial-card p {
  font-size: 1.12rem;
  font-style: italic;
  margin-bottom: 10px;
  color: #1A3252;
}
.testimonial-card strong {
  font-size: 1rem;
  color: #E8912D;
  font-family: 'Lato', sans-serif;
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(106deg,#FFE5C0 62%,#FFF5E0 100%);
  border-radius: 22px;
  box-shadow: 0 2px 11px rgba(232,145,45,0.07);
  text-align: center;
  margin-bottom: 32px;
  padding: 38px 0;
}
.cta-banner h2 {
  font-family: 'Lato', sans-serif;
  color: #1A3252;
  font-size: 2rem;
  margin-bottom: 10px;
}
.cta-banner p {
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: #1A3252;
}

/* ---- Blog Overview ---- */
.blog-category-list {
  display: flex;
  gap: 18px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.blog-category-list a {
  background: #FFE5C0;
  color: #B36915;
  border-radius: 12px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.17s, color 0.17s;
}
.blog-category-list a:hover, .blog-category-list a:focus {
  background: #E8912D;
  color: #fff;
}
.blog-post-card {
  background: #fff;
  border-radius: 15px;
  padding: 22px 14px;
  box-shadow: 0 2px 10px rgba(26,50,82,0.08);
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 250px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.17s;
}
.blog-read-more {
  color: #E8912D;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.14s;
}
.blog-read-more:hover, .blog-read-more:focus {
  color: #B36915;
}
.featured-post {
  background: #FFF9F3;
  border-radius: 16px;
  padding: 22px 18px;
  box-shadow: 0 2px 12px rgba(26,50,82,0.07);
  margin-top: 24px;
}

/* ---- FAQ / Accordion ---- */
.faq {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(26,50,82,0.07);
  margin-bottom: 60px;
}
.accordion-faq {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #FDF6EE;
  border-radius: 13px;
  box-shadow: 0 1px 5px rgba(26,50,82,0.07);
  padding: 17px 21px;
  transition: box-shadow 0.14s;
  cursor: pointer;
}
.faq-item h3 {
  margin-bottom: 5px;
  color: #E8912D;
  font-size: 1.09rem;
}
.faq-answer {
  display: none;
  color: #1A3252;
  font-size: 1rem;
  margin-top: 6px;
}
.faq-item.active .faq-answer {
  display: block;
  animation: fadeInFaq 0.33s;
}
@keyframes fadeInFaq {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0);   }
}
.faq-item:hover {
  box-shadow: 0 6px 18px rgba(232,145,45,0.17);
}

/* ---- Process Steps ---- */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 17px;
  list-style: none;
  margin-top: 10px;
}
.process-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #FDF6EE;
  border-radius: 8px;
  color: #1A3252;
  font-size: 1rem;
}
.process-steps img {
  width: 32px; height: 32px;
  border-radius: 5px;
}

/* ---- Contact Info ---- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #FFF9F3;
  border-radius: 14px;
  padding: 22px 19px;
  box-shadow: 0 1px 8px rgba(232,145,45,0.07);
  margin-bottom: 24px;
}
.contact-guidelines {
  background: #FFE5C0;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 0.96rem;
  color: #1A3252;
  margin-top: 6px;
}

/* ---- Confirmation (Thank-you) ---- */
.confirmation {
  background: #fff;
  border-radius: 18px;
  padding: 36px 20px;
  box-shadow: 0 2px 12px rgba(26,50,82,0.06);
  margin: 36px 0;
  text-align: center;
}
.confirmation h1 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.confirmation p {
  font-size: 1.08rem;
  margin-bottom: 14px;
}

/* ---- Legal Section ---- */
.legal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(26,50,82,0.08);
  padding: 38px 20px;
  margin-bottom: 48px;
}
.legal h1 {
  font-size: 1.7rem;
  color: #E8912D;
  margin-bottom: 18px;
}


/* ---- Footer ---- */
footer {
  background: #E8912D;
  color: #fff;
  border-radius: 24px 24px 0 0;
  margin-top: 55px;
  padding: 30px 0 22px 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 13px;
  border-radius: 10px;
  transition: background 0.19s, color 0.19s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: #fff;
  color: #E8912D;
}
.footer-info {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  font-size: 0.99rem;
  text-align: center;
  margin-top: 6px;
}
.footer-info img {
  width: 42px; height: 42px;
}
.footer-info a {
  color: #fff;
  text-decoration: underline;
}
.footer-info a:hover { color: #FFE5C0; }

/* ---- Cookie Banner ---- */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #FFE5C0;
  color: #1A3252;
  box-shadow: 0 -2px 10px rgba(232,145,45,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 22px 20px;
  gap: 22px;
  z-index: 3600;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 22px 22px 0 0;
  opacity: 0;
  transform: translateY(105%);
  pointer-events: none;
  transition: opacity 0.4s, transform 0.45s;
}
.cookie-banner.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: inherit;
  font-weight: 600;
  font-size: 0.96rem;
  border-radius: 14px;
  padding: 8px 18px;
  border: none;
  cursor: pointer;
  margin: 0;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.cookie-banner .cookie-accept {
  background: #E8912D;
  color: #fff;
  box-shadow: 0 2px 10px rgba(232,145,45,0.13);
}
.cookie-banner .cookie-accept:hover,
.cookie-banner .cookie-accept:focus {
  background: #B36915;
}
.cookie-banner .cookie-reject {
  background: #fff;
  color: #E8912D;
  border: 1px solid #E8912D;
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: #FFD194;
  color: #B36915;
}
.cookie-banner .cookie-settings {
  background: #FDF6EE;
  color: #1A3252;
  border: 1px solid #E8912D;
}
.cookie-banner .cookie-settings:hover,
.cookie-banner .cookie-settings:focus {
  background: #FFE5C0;
  color: #B36915;
}

/* ---- Cookie Modal Popup ---- */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; bottom: 0; right: 0;
  background: rgba(26,50,82,0.66);
  z-index: 3700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.34s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  color: #1A3252;
  border-radius: 20px;
  padding: 38px 32px 28px 32px;
  box-shadow: 0 8px 36px rgba(232,145,45,0.19);
  max-width: 375px;
  width: 90vw;
  text-align: left;
  position: relative;
  animation: fadeInCookie 0.42s cubic-bezier(0.68,0,0.32,1);
}
@keyframes fadeInCookie {
  from { opacity: 0; transform: translateY(26px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1);   }
}
.cookie-modal-content h2 {
  color: #E8912D;
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #F5F5F5;
  font-size: 1.01rem;
}
.cookie-modal-category:last-child {
  border-bottom: none;
}
.cookie-modal-toggle {
  width: 34px;
  height: 20px;
  background: #FFE5C0;
  border-radius: 10px;
  position: relative;
  transition: background 0.18s;
  border: 1px solid #E8912D;
  cursor: pointer;
}
.cookie-modal-toggle input {
  display: none;
}
.cookie-modal-toggle span {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #E8912D;
  transition: left 0.18s, background 0.18s;
}
.cookie-modal-toggle input:checked + span {
  left: 16px;
  background: #B36915;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 28px;
}
.cookie-modal-content .cookie-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: #FFE5C0;
  color: #E8912D;
  border-radius: 50%;
  width: 36px; height: 36px;
  border: none;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal-content .cookie-modal-close:hover {
  background: #E8912D;
  color: #fff;
}

/* ---- Responsive Design ---- */
@media (max-width: 1200px) {
  .container {
    max-width: 93vw;
  }
}
@media (max-width: 1024px) {
  .feature-grid, .service-cards, .team-member-cards {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .hero h1 { font-size: 2rem; }
  .section { padding: 35px 7vw; }
}
@media (max-width: 760px) {
  .container {
    padding: 0 8px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .hero {
    padding: 38px 0 22px 0;
    border-radius: 0 0 22px 22px;
  }
  .hero .container,
  .hero .content-wrapper {
    gap: 16px;
    text-align: left;
  }
  .features { padding: 24px 0; border-radius: 15px; }
  .cta-banner { border-radius: 14px; }
  .section { border-radius: 13px; padding: 18px 4vw; }
  .testimonial-card, .service-card, .team-member-card, .blog-post-card {
    min-width: 180px; padding: 12px 7px;
  }
  .pricing-table th, .pricing-table td { padding: 7px 7px; font-size: 0.97rem; }
  .testimonial-card { min-width: 160px; font-size: 0.98rem; }
}
@media (max-width: 700px) {
  .section { margin-bottom: 36px; }
  .features { margin-bottom: 35px; }
  .testimonial-slider, .feature-grid, .service-cards, .team-member-cards, .blog-post-cards {
    flex-direction: column;
    gap: 18px;
  }
  .cta-banner h2 { font-size: 1.4rem; }
  .testimonial-card, .service-card, .team-member-card, .blog-post-card, .featured-post {
    max-width: none;
    width: 100%;
  }
  .footer-info img { width: 28px; height: 28px; }
}
@media (max-width: 520px) {
  .hero h1 { font-size: 1.23rem; }
  .hero p, .cta-banner p, .testimonial-card p, .team-member-card p { font-size: 0.99rem; }
  .cta-primary { font-size: 0.97rem; padding: 8px 19px; }
  .footer-nav { flex-wrap: wrap; gap: 7px; }
  .cookie-banner { flex-direction: column; gap: 14px; padding: 13px 6px; font-size: 0.98rem; }
  .cookie-modal-content { padding: 16px 7px 16px 14px; }
}
@media (max-width: 400px) {
  .testimonial-card, .service-card, .team-member-card, .blog-post-card {
    min-width: 130px; font-size: 0.93rem;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
}

/* Utility classes */
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-accent { color: #E8912D !important; }
.bg-accent { background: #E8912D !important; color: #fff; }
.rounded { border-radius: 16px !important; }

/* Accessibility improvement for focus */
:focus-visible {
  outline: 2px solid #E8912D;
  outline-offset: 2px;
}

/* Hide visually for accessibility */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}

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