/* CSS RESET & BASE -------------------- */
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, input, button {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  line-height: 1.15;
  scroll-behavior: smooth;
}
body {
  background: #F2F2F2;
  color: #204967;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  border-radius: 10px;
}
ul, ol {
  padding-left: 1.3em;
}
a {
  color: #204967;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #E1A225;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  color: #204967;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

p {
  margin-bottom: 16px;
  font-size: 1rem;
}
strong { font-weight: 700; }
blockquote {
  background: #fff8e3;
  border-left: 6px solid #e1a225;
  padding: 18px 22px;
  margin: 0 0 12px 0;
  color: #204967;
  border-radius: 14px 2px 14px 2px;
  font-family: 'Montserrat', cursive, sans-serif;
  font-size: 1.13rem;
  position: relative;
}
blockquote:before {
  content: '\201C';
  color: #E1A225;
  font-size: 2.6em;
  position: absolute;
  left: 12px;
  top: -24px;
  font-family: 'Montserrat', cursive, sans-serif;
}

/* CONTAINERS AND SPACING ----------------------- */
.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 6px 32px 0 rgba(32,73,103,0.07),0 1.5px 7px #e1a2251c;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 10px 0 rgba(32,73,103,0.11);
  padding: 22px 18px;
  min-width: 240px;
  flex: 1 1 260px;
  transition: transform .15s,box-shadow .17s;
  will-change: transform;
}
.card:hover {
  transform: translateY(-8px) scale(1.025) rotate(-2deg);
  box-shadow: 0 8px 32px 0 rgba(225,162,37,0.14),0 4px 18px #20496710;
}

.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;
  background: #fffbe8;
  border-radius: 22px;
  box-shadow: 0 1.5px 11px #e1a22522;
  margin-bottom: 20px;
  color: #204967;
  font-size: 1rem;
  transition: box-shadow .18s;
}
.testimonial-card strong {
  color: #204967;
}
.testimonial-card blockquote {
  margin-bottom: 0;
  background: none;
  border-left: 4px solid #e1a225;
  border-radius: 12px 2px 12px 2px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f4f8fe;
  border-radius: 18px;
  padding: 22px 18px;
  margin-bottom: 20px;
  min-width: 180px;
  box-shadow: 0 1px 6px #20496710;
}

/* HEADER + NAV -------------------------------------------------- */
header {
  background: #204967;
  color: #fff;
  padding: 0 0 0 0;
  box-shadow: 0 4px 44px #20496725;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
header img {
  height: 42px;
  margin-right: 24px;
}
header nav {
  display: flex;
  gap: 22px;
}
header nav a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  background: none;
  border-radius: 8px;
  padding: 7px 13px;
  transition: background .17s, color .12s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  color: #E1A225;
  background: #fff2cc;
}

.cta-btn {
  background: #E1A225;
  color: #204967;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  border-radius: 36px;
  padding: 11px 34px;
  margin-left: 24px;
  border: none;
  box-shadow: 0 2px 16px #E1A22538;
  cursor: pointer;
  transition: background .17s, color .15s, transform .17s;
  letter-spacing: 0.04em;
  animation: cta-jump .96s 2;
}
@keyframes cta-jump {
  0%, 100% { transform: translateY(0); }
  20% { transform: translateY(-6px) scale(1.08); }
  38% { transform: translateY(1px) scale(.98); }
  55% { transform: translateY(-4px); }
  71% { transform: translateY(2px) scale(1.02); }
  85% { transform: translateY(-1px); }
}
.cta-btn:hover, .cta-btn:focus {
  background: #204967;
  color: #fff;
  transform: scale(1.05) rotate(-1deg);
}
.cta-btn.secondary {
  background: #fff8e3;
  color: #E1A225;
  border: 2px solid #e1a225;
  box-shadow: 0 1px 11px #e1a22516;
  margin-left: 0;
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: #E1A225;
  color: #204967;
}

/* MOBILE MENU ------------------------------------ */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 14px;
  top: 24px;
  z-index: 101;
  font-size: 2.3rem;
  background: #E1A225;
  color: #204967;
  border-radius: 10px;
  border: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  transition: background .18s, color .18s;
  box-shadow: 0 2px 14px #20496719;
  cursor: pointer;
}
.mobile-menu-toggle:active {
  background: #204967;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #204967dd;
  z-index: 1000;
  transform: translateX(-100vw);
  transition: transform .35s cubic-bezier(.62,.01,.2,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 0 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.1rem;
  position: absolute;
  top: 28px;
  right: 24px;
  border: none;
  background: #fff;
  color: #204967;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .16s, color .15s;
  z-index: 1005;
  box-shadow: 0 1px 7px #E1A22522;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #e1a225;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 86px;
  width: 100%;
  align-items: center;
}
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.22rem;
  color: #fff;
  background: none;
  border: none;
  padding: 16px 0 12px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1.5px solid #fff3;
  transition: background .16s, color .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e1a225;
  color: #204967;
}

/* HERO --------------------------------- */
.hero {
  background: linear-gradient(98deg, #E1A225 0%, #FBC748 100%);
  min-height: 340px;
  border-radius: 0 0 48px 48px;
  box-shadow: 0 6px 44px 0 #E1A22522;
  margin-bottom: 60px;
  padding: 40px 0 46px 0;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: flex;
  min-height: 250px;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  gap: 10px;
  text-align: center;
}
.hero h1 {
  color: #204967;
  font-family: 'Montserrat', cursive, sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  margin-bottom: 10px;
  text-shadow: 0 1px 0 #fff9, 0 2px 24px #f4c84915;
}
.hero p {
  color: #246EBA;
  font-family: 'Montserrat', cursive, sans-serif;
  font-size: 1.23rem;
  margin-bottom: 18px;
  letter-spacing: 0.012em;
}

/* FEATURES list + USPs ------------------------- */
.features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 35px;
}
.features li {
  background: #f4f8fe;
  border-radius: 18px;
  padding: 22px 18px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.02rem;
  color: #204967;
  box-shadow: 0 1.5px 8px #20496709;
  min-width: 170px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  margin-bottom: 0;
}
.features li strong {
  color: #E1A225;
  font-weight: 900;
  font-family: 'Montserrat', cursive, sans-serif;
  font-size: 1.09em;
}
.feature-badge {
  display: inline-block;
  background: #204967;
  color: #fff;
  border-radius: 23px;
  font-size: 0.89em;
  font-weight: 800;
  padding: 5px 16px;
  margin-top: 6px;
  font-family: 'Montserrat', sans-serif;
}

.usps {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 0;
  margin-top: 8px;
  list-style: none;
}
.usps li {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #e1a225;
  color: #204967;
  font-weight: 700;
  padding: 7px 15px;
  border-radius: 23px;
  font-size: 1rem;
}
.usps img {
  width: 24px;
  height: 24px;
}

/* POST-LIST ------------------------------------ */
.post-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 18px;
  list-style: none;
}
.post-list li {
  background: #fff;
  border-radius: 20px 20px 16px 8px;
  box-shadow: 0 1px 7px #20496715;
  padding: 20px 18px 14px 18px;
  transition: box-shadow .15s,transform .15s;
  border-left: 5px solid #e1a22520;
  margin-bottom: 0;
  font-family: 'Roboto', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.post-list li strong {
  color: #204967;
}
.post-list li span {
  color: #E1A225;
  font-size: 0.99em;
  font-family: 'Montserrat', cursive, sans-serif;
}
.post-list li p {
  font-size: 1.03em;
}
.post-list a {
  align-self: flex-end;
  color: #E1A225;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.02em;
  padding: 2px 9px;
  border-radius: 12px;
  background: #e1a22516;
  transition: background .16s, color .18s;
}
.post-list a:hover, .post-list a:focus {
  background: #204967;
  color: #fff;
}

/* NEWSLETTER SIGNUP ---------------- */
.newsletter-signup {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  background: #fffbe8;
  padding: 22px 20px;
  border-radius: 20px;
  box-shadow: 0 1.5px 11px #e1a22512;
}
.newsletter-signup label {
  font-size: 1.04em;
  font-family: 'Montserrat', sans-serif;
  color: #204967;
  margin-right: 8px;
}
.newsletter-signup input[type="email"] {
  font-size: 1.07em;
  border: 2px solid #e1a22533;
  border-radius: 16px;
  padding: 8px 17px;
  box-shadow: 0 1px 7px #e1a22514;
  font-family: 'Roboto', sans-serif;
  margin-right: 6px;
  outline: none;
  transition: border .15s;
}
.newsletter-signup input[type="email"]:focus {
  border-color: #e1a225;
}
.newsletter-signup button {
  background: #E1A225;
  color: #204967;
  border-radius: 20px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.07em;
  font-weight: 900;
  padding: 8px 24px;
  cursor: pointer;
  box-shadow: 0 1px 9px #e1a22512;
  transition: background .12s, color .12s, transform .17s;
}
.newsletter-signup button:hover, .newsletter-signup button:focus {
  background: #204967;
  color: #fff;
  transform: scale(1.04) rotate(-2deg);
}

/* SERVICE LIST (szolgaltatasok.html) ----------- */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 26px;
  list-style: none;
  align-items: stretch;
  justify-content: stretch;
}
.services-list li {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 1px 12px #20496717;
  padding: 24px 22px;
  min-width: 240px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
}
.services-list h3 {
  color: #E1A225;
  font-size: 1.14em;
  font-weight: 800;
  margin-bottom: 6px;
  font-family: 'Montserrat', cursive, sans-serif;
}
.services-list div {
  margin-top: 7px;
  color: #204967;
  font-weight: 700;
}

/* FAQ SNIPPET ------------- */
.faq-snippet {
  margin-top: 28px;
  padding: 18px 16px 14px 16px;
  border-radius: 16px;
  background: #f4f8fe;
  box-shadow: 0 1px 7px #20496718;
}
.faq-snippet h3 {
  color: #204967;
  font-size: 1.1em;
  font-family: 'Montserrat', sans-serif;
}

/* FILTER/SEARCH ON BLOG PAGE -------- */
.filter-search {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 17px;
  flex-wrap: wrap;
  font-family: 'Montserrat', sans-serif;
}
.filter-search label {
  font-weight: 800;
  color: #204967;
}
.filter-search select, .filter-search input[type='text'] {
  border-radius: 12px;
  border: 2px solid #e1a22533;
  font-size: 1em;
  font-family: 'Roboto', sans-serif;
  padding: 5px 13px;
  box-shadow: 0 1px 7px #e1a22513;
  outline: none;
  transition: border .13s;
}
.filter-search select:focus, .filter-search input:focus {
  border: 2px solid #e1a225;
}

/* GALLERY - success stories /quotes */
.participant-quotes {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0;
}
.success-stories {
  background: #fffbe8;
  border-radius: 12px;
  padding: 18px 18px 8px 18px;
  box-shadow: 0 1px 7px #20496710;
}
.success-stories h3 {
  font-size: 1.1em;
  color: #E1A225;
  font-family: 'Montserrat', cursive,sans-serif;
}

/* SOCIAL LINKS ------------------ */
.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 13px;
  font-family: 'Montserrat', sans-serif;
}
.social-links a img {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 1px 4px #e1a22533);
  transition: transform .15s;
}
.social-links a:hover img, .social-links a:focus img {
  transform: scale(1.18) rotate(-8deg);
}

/* MAP (contact) ----------------- */
.static-map {
  display: flex;
  align-items: center;
  background: #f4f8fe;
  padding: 15px 17px;
  border-radius: 18px;
  gap: 10px;
  box-shadow: 0 1px 7px #20496710;
  font-size: 1.07em;
  margin-bottom: 12px;
}
.static-map img {
  width: 28px;
  height: 28px;
}

/* FOOTER ---------------------------------------- */
footer {
  background: #204967;
  color: #fff;
  padding: 38px 0 28px;
  border-radius: 38px 38px 0 0;
  box-shadow: 0 -2px 29px #20496722;
  margin-top: 70px;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 19px;
  align-items: center;
  text-align: center;
}
footer nav {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 7px;
  flex-wrap: wrap;
  justify-content: center;
}
footer nav a {
  color: #e1a225;
  padding: 6px 12px;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: background .16s, color .14s;
  font-size: 1em;
}
footer nav a:hover, footer nav a:focus {
  background: #fff;
  color: #204967;
}
footer address {
  font-style: normal;
  color: #fff;
  margin-bottom: 7px;
  font-size: 1em;
}
footer address a {
  color: #e1a225;
  text-decoration: underline;
}
footer p {
  margin-top: 10px;
  color: #fff;
}

/* COOKIE CONSENT BANNER & MODAL --------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #fffbe8;
  color: #204967;
  box-shadow: 0px -2px 22px #e1a22531;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 18px;
  gap: 30px;
  font-size: 1.06rem;
  animation: banner-in .6s cubic-bezier(.41,.86,.45,1.4);
}
@keyframes banner-in {
  0% { transform: translateY(100%); opacity:0; }
  100% { transform: translateY(0); opacity:1; }
}
.cookie-consent-banner button {
  margin: 0 6px;
  padding: 9px 20px;
  font-size: 1.02em;
  border-radius: 16px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  box-shadow: 0 1px 7px #e1a22525;
  cursor: pointer;
  transition: background .13s, color .14s, transform .13s;
}
.cookie-consent-banner .accept {
  background: #E1A225;
  color: #204967;
}
.cookie-consent-banner .accept:hover,
.cookie-consent-banner .accept:focus {
  background: #204967;
  color: #fff;
  transform: scale(1.07);
}
.cookie-consent-banner .reject {
  background: #204967;
  color: #fff;
}
.cookie-consent-banner .reject:hover,
.cookie-consent-banner .reject:focus {
  background: #E1A225;
  color: #204967;
  transform: scale(1.07);
}
.cookie-consent-banner .settings {
  background: #fff;
  color: #E1A225;
  border: 1.5px solid #E1A225;
}
.cookie-consent-banner .settings:hover,
.cookie-consent-banner .settings:focus {
  background: #E1A225;
  color: #204967;
  transform: scale(1.07);
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%) scale(.92);
  background: #fff;
  color: #204967;
  border-radius: 24px;
  box-shadow: 0 2px 44px #20496729;
  z-index: 10030;
  padding: 38px 32px 25px 32px;
  width: 95%;
  max-width: 420px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .23s, transform .23s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1.02);
}
.cookie-modal h3 {
  font-size: 1.25em;
  margin-bottom: 13px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 22px;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f4f8fe;
  border-radius: 13px;
  padding: 12px 13px 12px 16px;
  font-size: 1.06em;
  font-family: 'Montserrat', sans-serif;
}
.cookie-category.essential {
  background: #e1a22522;
  color: #204967;
}
.cookie-modal .category-toggle {
  appearance: none;
  width: 38px;
  height: 24px;
  border-radius: 16px;
  background: #E1A22544;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .13s;
}
.cookie-modal .category-toggle:checked {
  background: #E1A225;
}
.cookie-modal .category-toggle::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 3.5px;
  width: 17px;
  height: 17px;
  background: #fff;
  border-radius: 50%;
  transition: left .14s;
  box-shadow: 0 1px 4px #e1a22519;
}
.cookie-modal .category-toggle:checked::before {
  left: 18px;
}
.cookie-modal .modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.cookie-modal button {
  padding: 9px 20px;
  font-size: 1.02em;
  border-radius: 16px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background .13s, color .14s;
}
.cookie-modal .category-toggle[disabled] {
  opacity: .7;
  cursor: not-allowed;
}

/* MODAL OVERLAY */
.cookie-modal-overlay {
  content: '';
  position: fixed;
  top: 0;left:0;
  width:100vw;height:100vh;
  background: rgba(32,73,103,0.26);
  z-index: 10020;
  transition: opacity .19s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal.open ~ .cookie-modal-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* MICRO-ANIMATIONS ---------------------------------- */
@keyframes playful-bounce {
  0%,100% { transform: scale(1) rotate(1deg); }
  30% { transform: scale(1.05) rotate(-1deg); }
  75% { transform: scale(.98) rotate(-2deg); }
}
.features li:hover, .feature-item:hover {
  animation: playful-bounce .8s 1;
}

/* TEXT BLOCKS & CONTENT -------------------- */
.text-section {
  background: #f4f8fe;
  border-radius: 15px;
  padding: 18px 17px;
  box-shadow: 0 1px 7px #20496714;
  margin-bottom: 18px;
}
.text-section ul {
  margin-top: 10px;
}
.text-section li {
  margin-bottom: 7px;
  font-size: 1em;
}

/* OL/UL tweaks */
ol, ul {
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}

/* Confirmation (Thank you) */
.confirmation {
  background: linear-gradient(95deg, #E1A225 0%, #fffbe8 100%);
  border-radius: 46px;
  min-height: 290px;
  padding: 48px 0 38px 0;
  margin-bottom: 60px;
  box-shadow: 0 3px 16px #E1A22515;
  text-align: center;
}
.confirmation h1 {
  color: #204967;
  font-family: 'Montserrat', cursive,sans-serif;
  font-size: 2.1rem;
}
.confirmation p {
  font-size: 1.2rem;
  color: #204967;
}
.confirmation .cta-btn {
  margin-top: 22px;
}

/* Tables (legal pages?) */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}
thead {
  background: #204967;
  color: #fff;
  font-family: 'Montserrat', cursive,sans-serif;
}
th, td {
  text-align: left;
  padding: 13px 9px;
  border-bottom: 1.5px solid #e1a22544;
}
th {
  background: #204967;
  color: #fff;
  font-weight: 700;
}
tr:nth-child(even) {
  background: #f4f8fe;
}

/* Responsive Layout ------------------------------- */
@media (max-width: 1024px) {
  .container { padding: 0 10px; }
  .section { padding: 30px 8px; }
  .hero { padding: 35px 0 36px 0; }
}
@media (max-width: 900px) {
  header .container { flex-direction: column; gap: 9px; height: auto; }
  .hero h1 { font-size: 2rem; }
  .cta-btn { margin-left: 0; }
  .services-list, .features {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .section { padding: 25px 2px; margin-bottom: 38px; }
  .hero { border-radius: 0 0 28px 28px; }
  .hero .container { min-height: 150px; padding: 2px; }
  .hero h1 { font-size: 1.45rem; }
  .content-wrapper { gap: 14px; }
  .card-container, .services-list, .features, .content-grid, .usps {
    flex-direction: column;
    gap: 13px;
  }
  .testimonial-card { flex-direction: column; gap: 8px; padding: 13px; font-size: 1em; }
  .mobile-menu-toggle { display: flex; }
  header nav, header .cta-btn { display: none !important; }
  .container { padding: 0 2vw; }
}
@media (max-width: 570px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1rem; }
  .section { padding: 13px 0; }
  .testimonial-card { padding: 7px; }
  .newsletter-signup { padding: 13px 8px; }
  .success-stories, .text-section { padding: 10px 7px; }
  .participant-quotes { gap: 9px; }
}
@media (max-width: 480px) {
  .footer .container, .content-wrapper { gap: 6px; }
}

/* Accessibility focus ----------------------------- */
a:focus, button:focus, input[type="email"]:focus, select:focus {
  outline: 2.5px solid #E1A225;
  outline-offset: 2px;
}

/* SCROllBAR tweaks ------------------------------- */
body {
  scrollbar-width: thin;
  scrollbar-color: #E1A225 #f4f8fe;
}
body::-webkit-scrollbar {
  width: 10px;
  background: #f4f8fe;
}
body::-webkit-scrollbar-thumb {
  background: #E1A225;
  border-radius: 9px;
}

/* END */
