/* 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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F3F9FF;
  color: #1C2836;
  min-height: 100vh;
  font-size: 16px;
}
* {
  box-sizing: inherit;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
}

/* BRAND COLOR VARIABLES (FALLBACKS) */
:root {
  --color-primary: #0B1D2B;
  --color-secondary: #38E5FF;
  --color-background: #F3F9FF;
  --color-text: #222;
  --color-gold: #CFB062;
  --color-white: #fff;
  --color-grey-100: #EFF3F7;
  --color-grey-700: #354153;
  --color-grey-800: #202b37;
  --color-error: #CC2C2C;
  --shadow-card: 0 4px 24px 0 rgba(11,29,43,0.08);
  --border-radius: 20px;
  --font-display: 'Montserrat', 'Arial', sans-serif;
  --font-body: 'Roboto', 'Arial', sans-serif;
}

body {
  background: var(--color-background);
  color: var(--color-primary);
}

/* TYPOGRAPHY ------------------------------------------------------ */
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.15;
  color: var(--color-primary);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
@media (max-width: 768px) {
  h1, .h1 {
    font-size: 2rem;
    margin-bottom: 18px;
  }
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.18;
  color: var(--color-primary);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  margin-bottom: 14px;
  color: var(--color-primary);
}
h4, .h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--color-primary);
}
p, ul li, ol li {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 16px;
}
strong, b {
  font-weight: 600;
}

/* LINKS ------------------------------------------------------ */
a {
  color: var(--color-primary);
  transition: color 0.2s, border-color 0.2s;
}
a:hover, a:focus {
  color: var(--color-gold);
  outline: none;
}

/* LAYOUT CONTAINER ----------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}

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

/* SECTION SPACING & FLEX LAYOUTS ------------------------------------ */
section,
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
@media (max-width: 768px) {
  section, .section {
    padding: 28px 8px;
    margin-bottom: 32px;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
}
.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: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 24px;
  margin-bottom: 20px;
  min-width: 240px;
  transition: box-shadow 0.25s, transform 0.25s;
  border-left: 6px solid var(--color-gold);
}
.testimonial-card:hover {
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 8px 36px 0 rgba(11,29,43,0.12);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 28px 22px;
  min-width: 220px;
  margin-bottom: 20px;
  border-top: 3px solid var(--color-gold);
}

/* FLEXBOx LAYOUTS FOR FEATURE/GRID/SERVICES ------------------------------ */
.feature-grid, .service-list, .service-detail-list, .client-story-cards, .featured-articles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.featured-articles article {
  flex: 1 1 300px;
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 24px 20px;
  margin-bottom: 20px;
  min-width: 240px;
  transition: box-shadow 0.2s, transform 0.2s;
  border-bottom: 4px solid var(--color-gold);
}
.featured-articles article:hover {
  box-shadow: 0 10px 40px 0 rgba(11,29,43,0.13);
  transform: translateY(-3px) scale(1.03);
}
.service-list, .service-detail-list {
  flex-direction: row;
  gap: 24px;
}
.service-card, .service-detail {
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 26px 20px;
  min-width: 230px;
  margin-bottom: 20px;
  border-left: 5px solid var(--color-gold);
  transition: box-shadow 0.18s,transform 0.18s;
}
.service-card:hover, .service-detail:hover {
  box-shadow: 0 8px 32px 0 rgba(11,29,43,0.15);
  transform: scale(1.025);
}

/***** RESPONSIVE FLEX LAYOUTS *****/
@media (max-width: 1024px) {
  .feature-grid, .service-list, .service-detail-list, .client-story-cards, .featured-articles {
    flex-direction: column;
    gap: 18px;
  }
}

/***** GAPS BETWEEN SECTIONS *****/
section + section, .section + .section {
  margin-top: 0;
  margin-bottom: 60px;
}

/***** BUTTONS & CTAs ---------------------------------------- *****/
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 32px;
  font-size: 1.12rem;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.15s, transform 0.15s;
  box-shadow: 0 2px 18px 0 rgba(11,29,43,0.07);
  margin-top: 14px;
  margin-bottom: 6px;
}
.cta.primary {
  background: var(--color-primary);
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}
.cta.secondary {
  background: var(--color-gold);
  color: var(--color-primary);
  border: 2px solid var(--color-gold);
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--color-gold);
  color: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 6px 32px 0 rgba(207,176,98,0.14);
  transform: translateY(-2px) scale(1.025);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--color-primary);
  color: var(--color-gold);
  border-color: var(--color-primary);
  box-shadow: 0 6px 32px 0 rgba(11,29,43,0.16);
  transform: translateY(-2px) scale(1.025);
}
button, .cta {
  outline: none;
}
button:focus, .cta:focus {
  box-shadow: 0 0 0 3px var(--color-secondary);
}

/***** HEADER & MAIN NAVBAR ----------------------------------- *****/
header {
  width: 100%;
  background: var(--color-white);
  border-bottom: 1.5px solid var(--color-gold);
  position: sticky;
  top: 0;
  z-index: 900;
}
header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 76px;
}
.logo {
  flex: 0 0 auto;
  margin-right: 24px;
  display: flex;
  align-items: center;
  height: 44px;
}
.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  padding: 4px 4px 2px 4px;
  transition: color 0.22s, border-color 0.15s;
  border-bottom: 2px solid transparent;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus, .main-nav a.active {
  color: var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--color-primary);
  cursor: pointer;
  margin-left: 18px;
  transition: color 0.18s;
  z-index: 1201;
}
.cta.primary {
  margin-left: 22px;
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 16px;
  }
  .cta.primary {
    margin-left: 12px;
  }
}
@media (max-width: 900px) {
  .logo {
    margin-right: 16px;
    height: 38px;
  }
  .main-nav {
    gap: 10px;
    font-size: 0.99em;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-wrap: nowrap;
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .main-nav,
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE MENU ------------------------------------------------------ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11,29,43,0.92);
  z-index: 1300;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.52,.06,.15,1) 0s;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-gold);
  font-size: 2.3rem;
  position: absolute;
  top: 18px;
  right: 24px;
  cursor: pointer;
  z-index: 1401;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 76px 40px 0 32px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.27rem;
  color: var(--color-white);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.35;
  padding: 9px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
  border-radius: 8px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-gold);
  background: rgba(207,176,98,0.10);
  border-bottom: 2.5px solid var(--color-gold);
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

/* COOKIE CONSENT BANNER & MODAL --------------------------------------------- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--color-white);
  color: var(--color-primary);
  padding: 18px 24px 18px 24px;
  box-shadow: 0 -2px 30px 0 rgba(11,29,43,0.10);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 2000;
  opacity: 0;
  transform: translateY(120%);
  transition: opacity 0.4s cubic-bezier(.54,.18,.1,1), transform 0.42s cubic-bezier(.54,.18,.1,1);
}
.cookie-consent-banner.active {
  opacity: 1;
  transform: translateY(0);
}
.cookie-consent-banner .cookie-text {
  flex: 1 1 320px;
  font-family: var(--font-body);
  font-size: 1rem;
  margin-right: 14px;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 13px;
}
.cookie-consent-banner button {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 24px;
  padding: 8px 22px;
  border: 2px solid var(--color-gold);
  margin: 0;
  cursor: pointer;
  background: var(--color-gold);
  color: var(--color-primary);
  transition: background 0.16s, color 0.16s;
}
.cookie-consent-banner button.accept {
  background: var(--color-primary);
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}
.cookie-consent-banner button.reject {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.cookie-consent-banner button.settings {
  background: #fff;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}
.cookie-consent-banner button.accept:hover,
.cookie-consent-banner button.accept:focus {
  background: var(--color-gold);
  color: var(--color-primary);
}
.cookie-consent-banner button.reject:hover, .cookie-consent-banner button.reject:focus {
  background: var(--color-primary);
  color: var(--color-gold);
}
.cookie-consent-banner button.settings:hover, .cookie-consent-banner button.settings:focus {
  background: var(--color-gold);
  color: var(--color-primary);
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    padding: 18px 6px;
    gap: 10px;
    align-items: flex-start;
  }
  .cookie-consent-banner .cookie-actions {
    gap: 8px;
  }
}
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right:0; bottom:0;
  width:100vw; height:100vh;
  background: rgba(11,29,43,0.52);
  z-index:4000;
  display:none;
}
.cookie-modal-backdrop.active {
  display:block;
}
.cookie-modal {
  position: fixed;
  left:50%; top: 50%;
  transform: translate(-50%,-60%) scale(1.02);
  background: var(--color-white);
  color: var(--color-primary);
  min-width: 340px;
  max-width:94vw;
  border-radius: 24px;
  box-shadow: 0 12px 48px 0 rgba(11,29,43,0.14);
  z-index: 4200;
  display: none;
  flex-direction: column;
  padding:32px 30px 30px 30px;
  gap:22px;
  opacity: 0;
  transition: opacity 0.28s, transform 0.27s;
}
.cookie-modal.active {
  display: flex;
  opacity: 1;
  transform: translate(-50%,-50%) scale(1.0);
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 13px; right: 24px;
  background: none;
  border: none;
  color: var(--color-gold);
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
}
.cookie-modal h2 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.cookie-category {
  margin-bottom: 18px;
  padding-bottom:8px;
  border-bottom:1px solid var(--color-grey-100);
}
.cookie-category label {
  font-family: var(--font-body);
  font-size:1.075rem;
  font-weight:500;
  color:var(--color-primary);
  margin-left:9px;
}
.cookie-category input[type="checkbox"], .cookie-category input[type="radio"] {
  width: 20px; height: 20px; accent-color: var(--color-gold);
}
.cookie-category .always-on {
  font-size:0.97em;
  font-style:italic;
  color: var(--color-grey-700);
  margin-left:13px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap:16px;
  margin-top:8px;
}
.cookie-modal .cookie-modal-actions button {
  font-family: var(--font-display);
  font-size: 1rem;
  border-radius: 24px;
  padding: 9px 30px;
  background: var(--color-primary);
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.cookie-modal .cookie-modal-actions button:hover,
.cookie-modal .cookie-modal-actions button:focus {
  background: var(--color-gold);
  color: var(--color-primary);
}
@media (max-width: 480px) {
  .cookie-modal {
    min-width:90vw;
    padding:23px 7vw 16px 12vw;
    font-size:0.98em;
  }
}

/* HERO & FEATURED AREAS ------------------------------------------ */
.hero {
  background: var(--color-primary);
  color: var(--color-gold);
  border-radius: 0 0 44px 44px;
  box-shadow: 0 2px 48px 0 rgba(11,29,43,0.09);
  padding: 70px 0 70px 0;
  margin-bottom: 70px;
  overflow: hidden;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero h1 {
  color: var(--color-gold);
  font-size: 2.8rem;
  margin-bottom: 20px;
}
.hero p {
  color: var(--color-white);
  font-size: 1.22rem;
}
.hero .cta.primary {
  margin-top: 26px;
  background: var(--color-gold);
  color: var(--color-primary);
  border-color: var(--color-gold);
}
.hero .cta.primary:hover,
.hero .cta.primary:focus {
  background: var(--color-white);
  color: var(--color-gold);
  border-color: var(--color-white);
}
@media (max-width: 900px) {
  .hero {
    padding: 38px 0 45px 0;
    border-radius: 0 0 26px 26px;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

/* CONTACT DETAILS ------------------------------------------ */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 18px 0 7px 0;
  font-size: 1rem;
  color: var(--color-primary);
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-size: 1rem;
  margin-bottom: 7px;
}
.contact-details a {
  color: var(--color-primary);
  border-bottom: 1px dotted var(--color-gold);
  transition: color 0.18s, border-color 0.18s;
}
.contact-details a:hover, .contact-details a:focus {
  color: var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
}

/* TESTIMONIALS ------------------------------------------ */
.testimonials {
  background: var(--color-background);
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 25px;
}
.client-story-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.rating-summary {
  background: var(--color-primary);
  color: var(--color-gold);
  font-size: 1.08rem;
  font-family: var(--font-display);
  padding: 8px 20px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  margin-top: 15px;
  box-shadow: 0 3px 16px rgba(11,29,43,0.13);
}
.testimonial-card p {
  color: var(--color-grey-800);
  font-family: var(--font-body);
  line-height: 1.6;
  font-size: 1.06rem;
  margin-bottom: 7px;
}
.testimonial-meta {
  font-size: 0.98rem;
  color: var(--color-gold);
  font-style: italic;
  font-weight: 500;
  margin-top: 8px;
}

/* LISTS, TEXT-SECTIONS & MISC --------------------------------- */
.text-section {
  margin-bottom: 22px;
  font-size: 1.08rem;
}
.text-section ul, .content-wrapper ul, .text-section ol, .content-wrapper ol {
  padding-left: 21px;
  margin-bottom: 16px;
}
.text-section ul li, .content-wrapper ul li,
.text-section ol li, .content-wrapper ol li {
  margin-bottom: 7px;
}
.feature-highlights ul li::before, .service-highlights ul li::before, .features ul li::before {
  content: "\273C";
  font-size: 1em;
  color: var(--color-gold);
  display: inline-block;
  width: 1.4em;
  margin-left: -1.5em;
  vertical-align: middle;
}

/* BLOG TOPIC TAGS */
.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.topic-tags span {
  background: var(--color-gold);
  color: var(--color-primary);
  font-family: var(--font-display);
  border-radius: 18px;
  padding: 5px 17px;
  font-size: 0.97rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  box-shadow: 0 1px 5px 0 rgba(207,176,98,0.10);
}

/***** SPECIAL COMPONENTS & DETAILS *****/
.service-detail {
  border-left: 5px solid var(--color-gold);
}
.map-location {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin: 17px 0;
  border-radius: 16px;
  background: var(--color-grey-100);
  padding: 15px 16px;
  font-size: 1.02rem;
}

.callback-option {
  background: var(--color-white);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  padding: 18px 18px 12px 18px;
  margin: 20px 0 0 0;
}

/* LEGAL PAGES + THANK YOU ------------------------------- */
.legal {
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 28px 28px 24px 28px;
  margin-bottom: 28px;
}
.legal ol, .legal ul {
  margin-left: 20px;
  padding-left: 15px;
}

/* FOOTER ---------------------------------------------------------- */
footer {
  width: 100%;
  background: var(--color-primary);
  color: var(--color-gold);
  padding-top:42px;
  padding-bottom:14px;
  border-radius: 40px 40px 0 0;
  box-shadow: 0 -2px 40px 0 rgba(10,20,28,0.09);
  position: relative;
  margin-top: 26px;
  z-index: 10;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-top {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}
.footer-nav, .legal-nav, .social-media {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}
.footer-nav a, .legal-nav a {
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.84;
  border-bottom: 2px solid transparent;
  transition: color 0.16s, border-color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus, .legal-nav a:hover, .legal-nav a:focus {
  color: var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
  opacity: 1;
}
.social-media a {
  color: var(--color-gold);
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  opacity: 0.85;
  margin-right: 7px;
}
.social-media a:hover, .social-media a:focus {
  color: var(--color-secondary);
  opacity: 1;
}
.social-media img {
  width: 28px; height: 28px;
  display: block;
}
.footer-bottom {
  margin-top: 15px;
  font-size: 0.97rem;
  font-family: var(--font-body);
  opacity: 0.66;
  color: var(--color-gold);
  text-align: left;
}
@media (max-width:900px) {
  .footer-top {
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
  }
}
@media (max-width:600px) {
  footer {
    padding-top:32px;
    border-radius: 22px 22px 0 0;
  }
  .footer-bottom {
    font-size: 0.89rem;
  }
}

/* MICRO-INTERACTIONS & TRANSITIONS ----------------------------------- */
section, .feature-item, .testimonial-card, .card, .service-card, .service-detail,
.featured-articles article {
  transition: box-shadow 0.25s, transform 0.18s;
}
button, .cta {
  transition: background 0.20s, color 0.15s, border-color 0.14s, box-shadow 0.16s;
}

/* SMOOTH FOCUS & OUTLINE REMOVAL ------------------------------- */
:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 1px;
}
button:focus, .cta:focus, .cookie-modal-close:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
  box-shadow: 0 0 0 2px var(--color-secondary);
}

/* NEXT-STEPS / THANK-YOU PAGE ------------------------------------ */
.next-steps ul li::before {
  content: '\2714';
  color: var(--color-gold);
  margin-right: 7px;
  font-weight: bold;
}

/***** MEDIA QUERIES FOR RESPONSIVENESS ----------------------- */
@media (max-width: 600px) {
  .content-wrapper {
    gap: 11px;
  }
  .feature-item, .service-card, .testimonial-card, .service-detail, .featured-articles article {
    min-width: unset;
    padding: 18px 9px;
  }
}
@media (max-width: 420px) {
  h1, .h1 {
    font-size: 1.46rem;
  }
  h2, .h2 {
    font-size: 1.13rem;
  }
  .footer-nav, .legal-nav, .social-media {
    gap: 10px;
    font-size: 0.97em;
  }
}

/* Hide scrollbars on mobile menu */
.mobile-menu {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.mobile-menu::-webkit-scrollbar {
  display: none;
}

/* END OF CSS */
