/* --- RESET & BASE TYPOGRAPHY --- */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #F7F7F9;
  color: #285361;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #285361;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #c48300;
  text-decoration: underline;
}
strong {
  font-weight: 700;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1.25em;
}
li {
  margin-bottom: 0.75em;
}

/* --- CONTAINER SYSTEM --- */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  max-width: 1160px;
}
.content-wrapper {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* --- HEADINGS TYPOGRAPHY --- */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #285361;
  margin-bottom: 12px;
  line-height: 1.15;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #285361;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #285361;
  margin-bottom: 6px;
}
.subheadline {
  font-size: 1.25rem;
  color: #5d7680;
  margin-bottom: 16px;
}

/* --- BASE SECTIONS & LAYOUT SPACING --- */
section, .section {
  background: #fff;
  border-radius: 22px;
  padding: 40px 20px;
  margin-bottom: 60px;
  box-shadow: 0 5px 22px rgba(40,83,97,0.07), 0 1.5px 3.5px rgba(235,180,112,0.04);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
main > section:last-child {
  margin-bottom: 0;
}

/* --- NAVIGATION & HEADER --- */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(40,83,97,0.07);
  padding: 0;
  border-bottom: 1px solid #e7edf1;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}
.logo img {
  height: 38px;
  width: auto;
  display: block;
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #285361;
  padding: 8px 0;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #c48300;
  background: #FFF5CC;
}
.btn-primary {
  background: #FED766;
  color: #285361;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 22px;
  padding: 11px 30px;
  border: none;
  box-shadow: 0 2.5px 8px rgba(40,83,97,0.08);
  cursor: pointer;
  margin-left: 20px;
  transition: background 0.16s, color 0.16s, transform 0.14s;
  outline: none;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #eac620;
  color: #222;
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  background: #285361;
  color: #FED766;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 22px;
  padding: 9px 24px;
  border: none;
  box-shadow: 0 2.5px 8px rgba(40,83,97,0.08);
  cursor: pointer;
  margin-top: 10px;
  outline: none;
  transition: background 0.18s, color 0.18s, transform 0.13s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #417f92;
  color: #ffe395;
  transform: scale(1.04);
}
header .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #285361;
  cursor: pointer;
  margin-left: auto;
  padding: 7px 11px;
  border-radius: 14px;
  transition: background 0.12s, color 0.12s;
}
header .mobile-menu-toggle:hover, header .mobile-menu-toggle:focus {
  background: #FFF5CC;
  color: #c48300;
}
@media (max-width: 1000px) {
  nav.main-nav {
    display: none;
  }
  header .btn-primary {
    display: none;
  }
  header .mobile-menu-toggle {
    display: block;
  }
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(40,83,97,0.92);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(0.77,0,0.175,1);
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.25rem;
  background: none;
  color: #FED766;
  border: none;
  padding: 18px 28px 10px 18px;
  outline: none;
  cursor: pointer;
  margin-left: auto;
  margin-top: 10px;
  border-radius: 22px;
  transition: background 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(254,215,102,0.10);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 38px;
  width: 100%;
}
.mobile-nav a {
  color: #FED766;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  padding: 17px 28px;
  width: 100%;
  border-radius: 18px 0 0 18px;
  transition: background 0.16s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fff3ad;
  color: #285361;
}
@media (min-width: 1001px) {
  .mobile-menu { display: none !important; }
}

/* ---- HERO SECTION ---- */
.hero {
  background: linear-gradient(94deg,#fffbe8 60%,#ffe7b8 100%);
  padding-top: 54px;
  padding-bottom: 54px;
  border-radius: 28px;
  box-shadow: 0 7px 26px rgba(40,83,97,0.09);
  margin-bottom: 48px;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
}
.hero h1 {
  color: #285361;
  font-size: 2.1rem;
  font-weight: 800;
}
@media (min-width: 768px) {
  .hero h1 {
    font-size: 2.7rem;
  }
}
.hero .btn-primary {
  margin-top: 20px;
}

/* ---- FEATURE GRID ---- */
.features, .feature-grid {
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 16px;
  justify-content: center;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fffdf5;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(254,215,102,0.16);
  padding: 26px 28px 22px 22px;
  flex-basis: 290px;
  min-width: 220px;
  max-width: 340px;
  transition: box-shadow 0.14s;
}
.feature-item:hover {
  box-shadow: 0 7px 34px rgba(40,83,97,0.10), 0 2px 12px rgba(254,215,102,0.08);
}
.feature-item img {
  width: 45px;
  height: 45px;
  margin-bottom: 6px;
  border-radius: 12px;
}
.feature-item h3 {
  margin-bottom: 4px;
  font-size: 1.11rem;
  color: #285361;
}
.feature-item p {
  color: #56757e;
}

/* ---- SERVICES ---- */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 16px;
  margin-bottom: 14px;
}
.service-list li {
  font-size: 1.06rem;
  border-left: 4px solid #FED766;
  padding-left: 15px;
  color: #285361;
  background: #fffde6;
  border-radius: 9px;
  margin-bottom: 0;
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  background: #fbedcc;
  padding: 40px 20px;
  border-radius: 26px;
  margin-bottom: 52px;
  box-shadow: 0 3px 16px rgba(222,180,52,0.07);
}
.testimonial-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: 19px;
  padding: 22px 24px;
  box-shadow: 0 7px 22px rgba(40,83,97,0.10), 0 2px 14px rgba(254,215,102,0.05);
  font-size: 1.08rem;
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 340px;
  transition: box-shadow 0.14s, transform 0.13s;
  color: #285361;
}
.testimonial-card:hover {
  box-shadow: 0 14px 40px rgba(222,180,52,0.16), 0 1.5px 10px rgba(40,83,97,0.11);
  transform: translateY(-3px) scale(1.03);
}
.testimonial-card strong {
  color: #996504;
  margin-top: 10px;
  font-size: 0.92rem;
}

/* ---- CTA SECTION ---- */
.cta, .cta-section {
  background: #fed766;
  border-radius: 22px;
  color: #285361;
  text-align: center;
  margin-bottom: 34px;
  box-shadow: 0 3px 15px rgba(254, 215, 102, 0.08);
  padding: 34px 20px;
}
.cta .btn-primary, .cta-section .btn-primary {
  margin-top: 22px;
  background: #285361;
  color: #fed766;
}
.cta .btn-primary:hover, .cta-section .btn-primary:hover {
  background: #183039;
  color: #ffe9a2;
}

/* ---- TABLES ---- */
.conference-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1.5px 5px rgba(40,83,97,0.06);
  margin-bottom: 20px;
  overflow: hidden;
}
.conference-table th, .conference-table td {
  padding: 14px 14px;
  text-align: left;
  font-size: 1rem;
}
.conference-table thead th {
  background: #FED766;
  color: #285361;
  font-weight: 700;
  border-bottom: 2.5px solid #f4b900;
}
.conference-table tbody tr:nth-child(odd) {
  background: #fffbe5;
}
.conference-table tbody tr:nth-child(even) {
  background: #fff;
}
.conference-table tbody tr:hover {
  background: #fff3ad;
}
.filters {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 22px;
}
.filters button {
  background: #FED766;
  color: #285361;
  border: none;
  border-radius: 15px;
  padding: 7px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-right: 12px;
  margin-bottom: 6px;
  box-shadow: 0 2.5px 8px rgba(40,83,97,0.07);
  transition: background 0.13s, color 0.13s;
}
.filters button:hover, .filters button:focus {
  background: #FFEEA6;
  color: #183039;
}

/* ---- TEAM GRID and CARDS ---- */
.team {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.team-member {
  background: #fffdf5;
  border-radius: 15px;
  box-shadow: 0 4px 14px rgba(254,215,102,0.14);
  padding: 22px 18px 16px 22px;
  flex: 1 1 250px;
  min-width: 210px;
  max-width: 350px;
  margin-bottom: 20px;
}
.team-member h3 {
  margin-bottom: 4px;
  font-size: 1.07rem;
}
.team-member p {
  color: #5d7680;
  font-size: 1rem;
}

/* ---- RESOURCE CARDS ---- */
.resource-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 22px;
}
.resource-card {
  background: #fffbe8;
  border-radius: 15px;
  box-shadow: 0 7px 24px rgba(254,215,102,0.11);
  padding: 24px 18px 20px 22px;
  max-width: 340px;
  min-width: 210px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  transition: box-shadow 0.14s, transform 0.13s;
}
.resource-card:hover {
  box-shadow: 0 12px 40px rgba(222,180,52,0.18), 0 2px 14px rgba(40,83,97,0.09);
  transform: translateY(-3px) scale(1.03);
}

/* --- BLOG FEED --- */
.blog-feed {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 14px;
}
.blog-item {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 3.5px 13px rgba(40,83,97,0.10);
  padding: 22px 18px 18px 22px;
  max-width: 320px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.12s;
}
.blog-item:hover {
  box-shadow: 0 14px 34px rgba(222,180,52,0.13), 0 2px 12px rgba(40,83,97,0.11);
  transform: translateY(-2px) scale(1.01);
}

/* --- FOOTER --- */
footer {
  background: #ffffff;
  border-top: 1.5px solid #eae5c6;
  margin-top: 56px;
  padding: 38px 0 14px 0;
  box-shadow: 0 -2.5px 12px rgba(254,215,102,0.04);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-nav a {
  color: #285361;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 6px;
  transition: background .13s, color .13s;
}
.footer-nav a:hover {
  background: #fed766;
  color: #183039;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 38px;
  align-items: flex-start;
  font-size: 0.98rem;
  color: #5d7680;
}
.footer-contact p, .footer-contact a {
  color: #5d7680;
}
.footer-contact img {
  vertical-align: middle;
  height: 16px;
  width: 16px;
  margin-right: 8px;
  margin-bottom: -3px;
}
.copyright {
  color: #9e958a;
  font-size: 0.93rem;
  margin-top: 10px;
}

/* --- CARD CONTAINERS (MANDATORY FLEX PATTERNS) --- */
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- FAQ, STEPS, USPs, LISTS --- */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 15px;
}
.faq-item {
  background: #fffbe8;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(254,215,102,0.13);
  padding: 19px 20px;
  flex: 1 1 200px;
  min-width: 220px;
  max-width: 370px;
  margin-bottom: 8px;
}
.step-flow {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 18px;
  padding-left: 1.5em;
}
.tips-list, .mistakes-list, .usp-list, .metrics-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 5px;
  margin-bottom: 18px;
  padding-left: 1.5em;
}
.usp-list li,
.metrics-list li {
  background: #fffbe8;
  border-left: 4px solid #FED766;
  border-radius: 8px;
  padding-left: 13px;
  margin-bottom: 0;
}

/* --- Cookie Consent Banner / Modal --- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #285361;
  color: #fdecb6;
  padding: 20px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 5000;
  box-shadow: 0 -8px 32px rgba(40,83,97,0.13);
  font-size: 1rem;
  border-radius: 22px 22px 0 0;
  animation: cookieSlideUp 0.45s cubic-bezier(0.7,0,0.24,1);
}
@keyframes cookieSlideUp {
  0% { transform: translateY(120%); opacity: 0; } 
 100% { transform: translateY(0); opacity: 1; }
}
.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-consent-banner button, .cookie-modal button {
  border: none;
  border-radius: 15px;
  padding: 9px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
  cursor: pointer;
  transition: background 0.15s, color 0.14s;
}
.cookie-accept {
  background: #FED766;
  color: #285361;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #ffed99;
  color: #183039;
}
.cookie-reject {
  background: #f2736e;
  color: #fff;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #dc554d;
}
.cookie-settings {
  background: #fff;
  color: #285361;
  border: 1.2px solid #FED766;
}
.cookie-settings:hover {
  background: #FFF5CC;
}
/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(0.97);
  background: #fffbe8;
  color: #285361;
  padding: 36px 28px 25px 28px;
  border-radius: 16px;
  box-shadow: 0 11px 60px 0 rgba(40,83,97,0.16);
  z-index: 9999;
  min-width: 310px;
  max-width: 94vw;
  display: none;
  flex-direction: column;
  gap: 20px;
  animation: modalFadeIn 0.36s cubic-bezier(0.7,0,0.24,1);
}
.cookie-modal.open { 
  display: flex;
}
@keyframes modalFadeIn {
  from { opacity:0; transform: translate(-50%,-54%) scale(0.94); }
  to   { opacity:1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  font-weight: 700;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-weight: 600;
  color: #285361;
}
.cookie-toggle {
  margin-right: 8px;
  appearance: none;
  width: 42px;
  height: 22px;
  background: #fed766;
  border-radius: 22px;
  transition: background 0.17s;
  cursor: pointer;
  position: relative;
  outline: none;
}
.cookie-toggle:checked {
  background: #285361;
}
.cookie-toggle::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.17s;
}
.cookie-toggle:checked::after {
  left: 23px;
}
.cookie-modal-actions {
  margin-top: 12px;
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}
.cookie-modal-close {
  background: #fed766;
  color: #285361;
}
.cookie-modal-close:hover { background: #ffe47a; }

/* --- TEXT SECTIONS ---- */
.text-section {
  background: #fffde9;
  border-radius: 15px;
  padding: 18px 16px 15px 18px;
  color: #285361;
  box-shadow: 0 1.5px 7px rgba(254,215,102,0.08);
  margin-bottom: 12px;
}
.text-section p {
  margin-bottom: 8px;
}

/* ---- RESPONSIVE DESIGN ---- */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  .hero, .cta, .cta-section, section, .section, .testimonials {
    padding: 28px 6px;
    border-radius: 18px;
  }
  .footer-contact { gap: 12px; }
  .resource-list, .team, .feature-grid, .testimonial-carousel, .blog-feed, .faq-list {
    flex-direction: column;
    gap: 16px;
  }
  .main-nav {
    display: none !important;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .hero h1, h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.17rem;
  }
  .btn-primary, .btn-secondary {
    padding: 10px 20px;
    font-size: 1rem;
  }
  .cookie-consent-banner {
    border-radius: 13px 13px 0 0;
    font-size: .95rem;
  }
}
@media (max-width: 540px) {
  section, .section, .testimonials, .hero {
    padding: 18px 0 18px 0;
    border-radius: 10px;
  }
  .card, .resource-card, .team-member, .feature-item, .blog-item {
    max-width: 99vw;
    min-width: 0;
    padding-left: 10px;
    padding-right: 10px;
  }
  .cookie-modal { padding: 19px 7vw 15px 7vw; border-radius: 12px; }
}

/* ---- UTILITIES ---- */
.text-center { text-align: center !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mb-1 { margin-bottom: 8px !important; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }
.gap-20 { gap: 20px !important; }
.gap-24 { gap: 24px !important; }

/* --- FORM STYLES (if forms present) --- */
input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
  border: 1.5px solid #e9c862;
  border-radius: 10px;
  padding: 8px 14px;
  margin-bottom: 12px;
  outline: none;
  background: #fff;
  box-shadow: 0 1px 4px rgba(254,215,102,0.08);
  transition: border 0.12s, box-shadow 0.12s;
}
input:focus, textarea:focus, select:focus {
  border: 1.6px solid #FED766;
  box-shadow: 0 0 7px #FED76622;
}
button:disabled {
  opacity: 0.78;
  cursor: not-allowed;
}

/* --- Accessibility links (skip, focus-visible) --- */
:focus {
  outline: 2.5px solid #FED766;
  outline-offset: 2px;
}

/* --- SPECIAL/ADDITIONAL STYLES FOR BRAND PERSONALITY --- */
section, .section, .resource-card, .feature-item, .testimonial-card, .cta, .cta-section, .team-member, .blog-item, .faq-item {
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(254,215,102,0.08);
}

/* --- Animations & Microinteractions --- */
.btn-primary, .btn-secondary, .feature-item, .card, .resource-card, .testimonial-card, .blog-item, .team-member, .filter button {
  transition: box-shadow 0.12s, transform 0.11s, background 0.13s, color 0.11s;
}
.btn-primary:active, .btn-secondary:active {
  transform: scale(0.98);
}
.card:hover, .feature-item:hover, .resource-card:hover, .team-member:hover, .blog-item:hover {
  box-shadow: 0 10px 26px rgba(254,215,102,0.12), 0 2px 14px rgba(40,83,97,0.09);
  transform: translateY(-2px) scale(1.02);
}

/* --- Ensure proper color contrast in testimonial/review cards --- */
.testimonial-card, .testimonial-card p, .testimonial-card strong {
  background: #fff;
  color: #285361;
}

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