/* =============================================
   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;
}
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}
body {
  line-height: 1.6;
  color: #1c222e;
  background-color: #fff;
  font-family: "Open Sans", Georgia, serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  background-color: transparent;
  color: #14213D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FCA311;
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  appearance: none;
}
button {
  cursor: pointer;
  background: transparent;
}
strong, b {
  font-weight: 700;
}
/* =============================================
   Typography & Visual Hierarchy
   ============================================= */
h1, .h1 {
  font-family: 'Montserrat', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #14213D;
}
h2, .h2 {
  font-family: 'Montserrat', Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: #14213D;
}
h3, .h3 {
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: #1c222e;
}
h4,h5,h6 {
  font-family: 'Montserrat', Georgia, serif;
  color: #14213D;
}
p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #222A37;
}
.subheadline {
  font-size: 1.125rem;
  color: #414968;
  margin-bottom: 24px;
}
ul, ol {
  margin-left: 20px;
  margin-bottom: 20px;
}
ul li, ol li {
  margin-bottom: 8px;
  position: relative;
  color: #1c222e;
  font-size: 1rem;
}
ul li:before {
  content: '–';
  color: #FCA311;
  position: absolute;
  left: -20px;
  font-weight: bold;
}
/* ==========================
   Containers & Layout
   ========================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0px 4px 24px rgba(20, 33, 61, 0.08);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  padding: 32px 24px;
}
.card:hover {
  box-shadow: 0px 8px 36px rgba(20,33,61,0.14);
  transform: translateY(-4px) scale(1.01);
}
.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: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F6F7FA;
  border-radius: 12px;
  min-width: 270px;
  max-width: 400px;
  color: #14213D;
  font-size: 1.05rem;
  box-shadow: 0 2px 12px rgba(20,33,61,0.06);
  margin-bottom: 20px;
}
.testimonial-card strong {
  font-size: 1rem;
  color: #222A37;
  margin-top: 8px;
}
.star-rating {
  color: #FCA311;
  font-size: 1.2rem;
  letter-spacing: 1.5px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
/* ====================
   Header & Navigation
   ==================== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 16px rgba(20,33,61,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  z-index: 1001;
  position: relative;
}
.site-logo {
  display: flex;
  align-items: center;
  height: 48px;
}
.site-logo img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1.04rem;
}
.main-nav a {
  color: #14213D;
  font-weight: 500;
  padding: 8px 0 8px 0;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #FCA311;
}
.cta-btn {
  background: #FCA311;
  color: #14213D;
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 700;
  font-size: 1.09rem;
  border-radius: 30px;
  padding: 11px 32px;
  margin-left: 20px;
  text-decoration: none;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(252,163,17,0.13);
  transition: background 0.18s, color 0.18s, transform 0.16s;
  display: inline-flex;
  align-items: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: #14213D;
  color: #FCA311;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 5px 16px rgba(20,33,61,.18);
}
button.mobile-menu-toggle {
  display: none;
  background: #FCA311;
  color: #fff;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-left: 18px;
  transition: background 0.2s, color 0.2s;
  border: none;
  box-shadow: 0 2px 8px rgba(252,163,17,0.11);
  z-index: 2002;
}
button.mobile-menu-toggle:focus, button.mobile-menu-toggle:hover {
  background: #14213D;
  color: #FCA311;
}
/* ================
   Mobile Menu
   ================ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20,33,61,0.95);
  color: #fff;
  z-index: 2001;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 28px 26px 0 26px;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.33s cubic-bezier(.86,.01,.19,.98), opacity 0.26s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: #FCA311;
  font-size: 2.2rem;
  border: none;
  margin-bottom: 44px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover { color: #fff; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 10px 10px 10px 0;
  border-radius: 5px;
  transition: background 0.15s, color 0.17s;
}
.mobile-nav a:active,
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #FCA311;
  color: #14213D;
}
/* ===============
  Hero Sections
  =============== */
.hero, .hero-course, .services-hero, .resources-hero {
  background: #14213D;
  color: #fff;
  padding: 48px 0 56px 0;
  display: flex;
  align-items: center;
  min-height: 320px;
  position: relative;
}
.hero .content-wrapper,
.hero-course .content-wrapper,
.services-hero .content-wrapper,
.resources-hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1, .hero-course h1, .services-hero h1, .resources-hero h1 {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 600;
}
.hero p, .hero-course p, .services-hero p, .resources-hero p {
  color: #E5E5E5;
  font-size: 1.21rem;
}
.hero .cta-btn, .hero-course .cta-btn, .services-hero .cta-btn, .resources-hero .cta-btn {
  margin-top: 12px;
  background: #FCA311;
  color: #14213D;
}
.hero .cta-btn:hover, .hero-course .cta-btn:hover,
.services-hero .cta-btn:hover, .resources-hero .cta-btn:hover {
  background: #fff;
  color: #FCA311;
}
/* ===============
  Features & Grids
  =============== */
.features, .feature-grid, .service-cards, .team-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.feature-grid {
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 28px;
}
.feature {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 14px rgba(44,56,92,.06);
  padding: 32px 22px;
  min-width: 230px;
  max-width: 320px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s,transform 0.2s;
}
.feature:hover {
  box-shadow: 0 5px 18px rgba(44,56,92,0.16);
  transform: translateY(-3px) scale(1.015);
}
.feature img {
  width: 38px; height: 38px;
  margin-bottom: 12px;
}
.feature h3 {
  font-size: 1.17rem;
  margin-bottom: 8px;
}
.service-cards {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-card {
  background: #F6F7FA;
  border-radius: 10px;
  padding: 30px 22px;
  min-width: 220px; max-width: 320px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  box-shadow: 0 2px 11px rgba(20,33,61,0.04);
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card a {
  background: #FCA311;
  color: #14213D;
  padding: 8px 24px;
  border-radius: 18px;
  font-size: 1rem;
  text-decoration: none;
  margin-top: 14px;
  align-self: flex-start;
  transition: background 0.18s, color 0.14s;
}
.service-card a:hover {
  background: #14213D;
  color: #FCA311;
}
.service-card:hover {
  box-shadow: 0 6px 20px rgba(20,33,61,0.14);
  transform: scale(1.025);
}
.team-overview {
  gap: 28px;
  margin-top: 10px;
}
.team-member {
  background: #F6F7FA;
  border-radius: 8px;
  padding: 22px 18px;
  min-width: 180px; max-width: 300px;
  flex: 1 1 180px;
  box-shadow: 0 1px 9px rgba(20,33,61,0.06);
}
.team-member h3 {
  margin-bottom: 7px;
}
/* ===============
  Blog Snippets
  =============== */
.blog-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.blog-post {
  background: #fff;
  border-radius: 10px;
  padding: 24px 16px;
  min-width: 220px;
  max-width: 330px;
  flex: 1 1 210px;
  box-shadow: 0 1.5px 9px rgba(20,33,61,0.07);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.blog-post h3 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}
.blog-post a {
  color: #FCA311;
  font-weight: 600;
  text-decoration: underline;
  align-self: flex-start;
  transition: color 0.15s;
}
.blog-post a:hover {
  color: #14213D;
}
/* ===============
  Newsletter Signup
  =============== */
.newsletter-signup .cta-btn {
  margin-top: 12px;
  margin-bottom: 12px;
  background: #FCA311;
  color: #14213D;
}
/* ===============
  Testimonial Slider
  =============== */
.testimonials .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.testimonials-list {
  background: #F6F7FA;
  border-radius: 14px;
  padding: 32px 18px;
  margin-bottom: 60px;
}
.testimonials-list .testimonial-card {
  background: #fff;
  border-radius: 12px;
  gap: 20px;
  box-shadow: 0 2px 12px rgba(20,33,61,0.05);
  margin-bottom: 20px;
}
/* ===============
  CTA Banner
  =============== */
.cta-banner {
  background: #FCA311;
  color: #14213D;
  text-align: center;
  padding: 44px 0 44px 0;
  display: flex;
  align-items: center;
}
.cta-banner .content-wrapper {
  align-items: center;
}
.cta-banner h2 {
  margin-bottom: 18px;
  color: #14213D;
  font-size: 2rem;
  font-family: 'Montserrat', Georgia, serif;
}
.cta-banner .cta-btn {
  background: #14213D;
  color: #fff;
  font-weight: 700;
  margin-top: 0;
}
.cta-banner .cta-btn:hover {
  background: #fff;
  color: #FCA311;
}
/* ===============
  FAQ List
  =============== */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 8px;
}
.faq-item {
  background: #F6F7FA;
  border-radius: 8px;
  padding: 18px 14px;
  min-width: 220px; max-width: 340px;
  flex: 1 1 210px;
  box-shadow: 0 1.5px 9px rgba(20,33,61,0.07);
}
.faq-item h3 {
  margin-bottom: 7px;
}
/* ===============
  Infographic
  =============== */
.infographic {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.infographic img {
  max-width: 98%;
  border-radius: 12px;
}
/* ===============
  About – Brand Values
  =============== */
.brand-values ul, .visual-identity ul {
  list-style: disc;
  padding-left: 22px;
}
.brand-values ul li strong, .visual-identity ul li strong {
  color: #14213D;
}
/* ===============
  Legal Section
  =============== */
.legal-policy {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1.5px 10px rgba(20,33,61,.07);
  padding: 38px 28px;
  margin-top: 28px;
  margin-bottom: 60px;
}
.legal-policy h1, .legal-policy h2,
.legal-policy h3 {
  color: #14213D;
}
/* ===============
  Contact Section
  =============== */
.contact-section .content-wrapper {
  gap: 26px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.contact-details a {
  color: #14213D;
  text-decoration: underline;
  word-break: break-all;
}
.map-address {
  margin-top: 20px;
  background: #F6F7FA;
  border-radius: 8px;
  padding: 16px;
}
/* ===============
  Footer
  =============== */
footer {
  background: #14213D;
  color: #E5E5E5;
  padding: 35px 0;
  display: flex;
  align-items: flex-start;
  width: 100%;
  font-size: 1rem;
  font-family: 'Open Sans', Georgia, serif;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-links a {
  color: #E5E5E5;
  font-weight: 400;
  font-size: 1rem;
  opacity: 0.92;
  transition: color 0.18s, text-decoration 0.18s;
}
.footer-links a:hover, .footer-links a:focus {
  color: #FCA311;
  text-decoration: underline;
}
.contact-details p,
.contact-details a {
  color: #E5E5E5;
}
.social-links {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  transition: transform 0.18s;
}
.social-links a:hover {
  transform: scale(1.1);
}
.social-links img {
  height: 28px; width: 28px;
  filter: grayscale(0.7) brightness(.88);
  transition: filter 0.2s;
}
.social-links a:hover img { filter: brightness(1.55) grayscale(0); }
/* ===============
  Thank You Page
  =============== */
.thank-you-section .content-wrapper {
  align-items: center;
}
.thank-you-section ul {
  margin-left: 24px;
}
.thank-you-section .cta-btn {
  margin-top: 18px;
}
/* ===============
  Cookie Consent Banner
  =============== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #F6F7FA;
  color: #14213D;
  border-top: 2px solid #FCA311;
  box-shadow: 0 -2px 24px rgba(20,33,61,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 10px 18px 10px;
  z-index: 3000;
  gap: 17px;
  transition: transform 0.28s cubic-bezier(.63,0,.58,1), opacity 0.24s;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner .cookie-text {
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
}
.cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
  justify-content: center;
}
.cookie-actions .cookie-btn {
  background: #FCA311;
  color: #14213D;
  border-radius: 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 600;
  padding: 8px 22px;
  border: none;
  transition: background 0.16s, color 0.16s;
}
.cookie-actions .cookie-btn:focus,
.cookie-actions .cookie-btn:hover {
  background: #14213D;
  color: #FCA311;
}
.cookie-actions .cookie-btn.cookie-settings-btn {
  background: #E5E5E5;
  color: #14213D;
  font-weight: 500;
  border: 1px solid #14213D;
}
.cookie-actions .cookie-btn.cookie-settings-btn:hover {
  background: #fff;
  color: #14213D;
}
/* ===============
  Cookie Modal
  =============== */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(20,33,61,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s cubic-bezier(.66,.01,.54,.97);
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  border-radius: 16px;
  min-width: 330px;
  max-width: 94vw;
  padding: 32px 26px 26px 26px;
  box-shadow: 0 5px 24px rgba(20,33,61,0.15);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal .close-cookie-modal {
  background: none;
  color: #FCA311;
  border: none;
  font-size: 2rem;
  position: absolute;
  top: 14px; right: 18px;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal .close-cookie-modal:hover,
.cookie-modal .close-cookie-modal:focus {
  color: #14213D;
}
.cookie-modal h3 {
  font-family: 'Montserrat', Georgia, serif;
  color: #14213D;
  font-size: 1.2rem;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 10px 0 20px 0;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal label {
  font-size: 1rem;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 34px; height: 18px;
  background: #E5E5E5;
  border-radius: 18px;
  position: relative;
  outline: none;
  transition: background .15s;
  cursor: pointer;
}
.cookie-modal .cookie-toggle:checked {
  background: #FCA311;
}
.cookie-modal .cookie-toggle::before {
  content: '';
  position: absolute; left: 3px; top: 3px;
  width: 13px; height: 13px;
  background: #fff;
  border-radius: 50%;
  transition: transform .16s;
  box-shadow: 0 2px 5px rgba(20,33,61,0.14);
}
.cookie-modal .cookie-toggle:checked:before {
  transform: translateX(16px);
}
.cookie-modal .cookie-actions-modal {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal .cookie-btn {
  background: #FCA311;
  color: #14213D;
  border-radius: 18px;
  font-size: 1rem;
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 600;
  padding: 8px 18px;
  border: none;
  transition: background 0.16s, color 0.16s;
}
.cookie-modal .cookie-btn:focus,
.cookie-modal .cookie-btn:hover {
  background: #14213D;
  color: #FCA311;
}
.cookie-modal .cookie-btn.secondary {
  background: #E5E5E5;
  color: #14213D;
  font-weight: 500;
}
.cookie-modal .cookie-btn.secondary:hover {
  background: #fff;
  color: #14213D;
}
/* ==========================
   Responsive Design
   ========================== */
@media (max-width: 1100px) {
  .container {
    padding-left: 8px; padding-right: 8px;
  }
}
@media (max-width: 900px) {
  body { font-size: 15px; }
  .main-nav {
    gap: 14px;
  }
  .feature-grid, .service-cards, .team-overview, .blog-preview, .testimonial-slider {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  body { font-size: 15px; }
  header {
    padding: 12px 8px;
  }
  .main-nav, .cta-btn {
    display: none !important;
  }
  button.mobile-menu-toggle {
    display: flex;
  }
  .container {
    padding-left: 2vw; padding-right: 2vw;
  }
  .section {
    padding: 22px 6px;
    margin-bottom: 38px;
  }
  .hero, .hero-course, .services-hero, .resources-hero {
    padding: 28px 0 38px 0;
    min-height: unset;
  }
  .hero h1, .hero-course h1, .services-hero h1, .resources-hero h1 {
    font-size: 2.1rem;
  }
  .features, .feature-grid, .service-cards, .team-overview, .blog-preview, .testimonial-slider, .faq-list {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .feature, .service-card, .team-member, .blog-post, .faq-item, .testimonial-card {
    min-width: unset;
    max-width: 100%;
  }
  .cta-banner {
    padding: 28px 0 30px 0;
  }
  .cta-banner h2 {
    font-size: 1.21rem;
    margin-bottom: 8px;
  }
  .cookie-modal .cookie-modal-content {
    min-width: unset; max-width: 97vw;
    padding: 20px 8px;
  }
}
@media (max-width: 540px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.26rem; }
  .footer-links { gap: 11px; }
  .content-wrapper { gap: 12px; }
  .map-address, .contact-details {
    font-size: 0.97rem;
  }
  .hero, .hero-course, .services-hero, .resources-hero {
    padding: 15px 0 21px 0;
  }
}
@media (max-width: 410px) {
  .site-logo img {
    height: 36px;
  }
  .cookie-modal .cookie-modal-content {
    font-size: 0.95rem;
  }
}
/* ==========================
   Animations & Microinteractions
   ========================== */
.cta-btn, .service-card a, .main-nav a, .mobile-nav a, .card, .feature, .blog-post, .team-member, .service-card, .testimonial-card, .faq-item, .mobile-menu-close, .cookie-btn {
  transition: box-shadow 0.16s, background 0.18s, color 0.18s, transform 0.15s, border-color 0.14s;
}
.card:active, .feature:active, .service-card:active {
  transform: scale(0.98);
}
.mobile-menu {
  /* Already includes transition */
}
.mobile-menu.open .mobile-nav a {
  animation: mobileMenuFade 0.56s cubic-bezier(.33,.12,.52,1.03) both;
}
@keyframes mobileMenuFade {
  0% { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}
/* ==========================
   Accessibility
   ========================== */
:focus {
  outline: 2px solid #FCA311;
  outline-offset: 2px;
}
.visually-hidden {
  border: 0 !important;
  clip: rect(0,0,0,0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}
/* ==========================
   Utility Classes
   ========================== */
.text-center { text-align: center !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-32 { margin-bottom: 32px !important; }
/* ===============
  Hide elements
  =============== */
.hide { display: none !important; }

/* END CSS */
