/* 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.4;
  min-height: 100vh;
  background: #F1F3F6;
  color: #254360;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: #254360;
  text-decoration: none;
  font-weight: 700;
  transition: color .18s;
}
a:hover, a:active, a:focus {
  color: #F4B400;
}
button {
  font-family: inherit;
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
}

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #F1F3F6;
  color: #254360;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #254360;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.subheadline {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 26px;
  color: #374D68;
  letter-spacing: .005em;
}

/* MAIN LAYOUT */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(36, 67, 96, 0.08);
}

/* HEADER */
header {
  background: #fff;
  box-shadow: 0 2px 14px 0 rgba(36,67,96,0.07);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1002;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 26px;
}
.logo-link img {
  height: 46px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.main-nav a {
  padding: 8px 0;
  font-size: 1rem;
  position: relative;
  color: #254360;
  border-bottom: 2px solid transparent;
  transition: border-color .16s, color .16s;
}
.main-nav a:hover, .main-nav a.active {
  color: #F4B400;
  border-bottom: 2px solid #F4B400;
}

.cta.primary {
  background: #F4B400;
  color: #254360 !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  padding: 12px 34px;
  border-radius: 30px;
  font-size: 1.15rem;
  box-shadow: 0 4px 20px 0 rgba(244,180,0,0.12);
  margin-left: 16px;
  transition: background .2s, color .18s, box-shadow .22s;
  border: 2px solid #F4B400;
  display: inline-block;
  letter-spacing: 0.01em;
}
.cta.primary:hover, .cta.primary:focus {
  background: #254360;
  color: #fff !important;
  border-color: #254360;
  box-shadow: 0 6px 28px 0 rgba(36,67,96,0.13);
}

.cta {
  background: #254360;
  color: #F4B400 !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 24px;
  font-size: 1rem;
  margin-top: 10px;
  display: inline-block;
  transition: background .18s, color .18s, box-shadow .18s;
  border: 2px solid #254360;
  letter-spacing: 0.01em;
}
.cta:hover, .cta:focus {
  background: #F4B400;
  color: #254360 !important;
  border-color: #F4B400;
  box-shadow: 0 6px 28px 0 rgba(244,180,0,0.13);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #254360;
  background: none;
  border: none;
  padding: 6px 16px;
  margin-left: 8px;
  transition: color .15s;
  z-index: 2010;
}
.mobile-menu-toggle:hover {
  color: #F4B400;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: #254360;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2020;
  padding: 30px 32px 40px 32px;
  min-height: 100vh;
  transform: translateX(-105%);
  transition: transform .32s cubic-bezier(0.4,0.1,0.4,1);
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  color: #fff;
  background: none;
  font-size: 2.4rem;
  margin-bottom: 16px;
  border-radius: 5px;
  transition: background .15s, color .15s;
  z-index: 2030;
}
.mobile-menu-close:hover {
  background: #F4B400;
  color: #254360;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  padding: 12px 0 12px 0;
  border-bottom: 2px solid transparent;
  transition: color .18s, border-bottom .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F4B400;
  border-bottom: 2px solid #F4B400;
}

@media (max-width: 1080px) {
  .container {
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  .main-nav {
    gap: 18px;
  }
  .cta.primary {
    padding: 12px 20px;
    font-size: 1rem;
  }
}
@media (max-width: 850px) {
  header .container {
      gap: 8px;
  }
  .main-nav {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .main-nav,.cta.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* HERO SECTIONS */
.hero, .lifehacks-hero, .workshops-hero, .blog-hero, .thank-you {
  background: #254360;
  color: #fff;
  padding: 56px 0 44px 0;
  margin-bottom: 0;
}
.hero .content-wrapper,
.lifehacks-hero .content-wrapper,
.workshops-hero .content-wrapper,
.blog-hero .content-wrapper,
.thank-you .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.hero h1, .lifehacks-hero h1, .blog-hero h1,
.workshops-hero h1, .thank-you h1 {
  color: #fff;
}
.hero .cta.primary, .lifehacks-hero .cta.primary, .workshops-hero .cta.primary, .thank-you .cta.primary {
  margin-top: 18px;
}

/* GENERIC CARDS & LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 12px 0 rgba(36,67,96,0.09);
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 240px;
  flex: 1 1 320px;
  transition: box-shadow .18s, transform .18s;
}
.card:hover {
  box-shadow: 0 8px 38px 0 rgba(36,67,96,0.17);
  transform: translateY(-4px) scale(1.01);
  z-index: 2;
}

.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;
    align-items: flex-start;
  }
}

/* FEATURES, SERVICES, CATEGORIES */
.features, .feature-grid, .category-list, .service-grid, .workshops-grid, .blog-cards, .tip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 16px;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(244,180,0,0.09);
  padding: 26px 22px 22px 22px;
  flex: 1 1 240px;
  min-width: 220px;
  transition: box-shadow .18s, transform .16s;
}
.feature img {
  width: 38px;
  height: 38px;
}
.feature:hover {
  box-shadow: 0 8px 32px 0 rgba(244,180,0,0.19);
  transform: translateY(-3px) scale(1.01);
}

/* CATEGORIES */
.category-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(36, 67, 96, 0.10);
  flex: 1 1 240px;
  min-width: 220px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  transition: box-shadow .14s, transform .14s;
}
.category-item img {
  width: 33px;
  height: 33px;
}
.category-item:hover {
  box-shadow: 0 8px 28px 0 rgba(244,180,0,0.17);
  transform: translateY(-3px) scale(1.01);
}

/* SERVICES */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}
.service-card {
  background: #F1F3F6;
  border: 2px solid #F4B400;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(36, 67, 96, 0.07);
  padding: 28px 20px 24px 20px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  transition: box-shadow .18s, border-color .17s,
    transform .16s;
}
.service-card:hover {
  border-color: #254360;
  box-shadow: 0 7px 28px 0 rgba(36,67,96,0.14);
  transform: translateY(-3px) scale(1.01);
}
.service-card strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  color: #254360;
  margin-top: 10px;
  letter-spacing: 0.02em;
}

/* WORKSHOP CARDS */
.workshops-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.workshop-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(36,67,96,0.08);
  padding: 26px 20px 20px 20px;
  flex: 1 1 220px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .15s;
}
.workshop-item:hover {
  box-shadow: 0 7px 28px 0 rgba(36,67,96,0.15);
  transform: translateY(-2px) scale(1.01);
}

/* BLOG CARDS */
.blog-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}
.blog-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(36,67,96,0.07);
  flex: 1 1 260px;
  min-width: 220px;
  padding: 26px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 20px;
  transition: box-shadow .15s, transform .15s;
}
.blog-card:hover {
  box-shadow: 0 9px 36px 0 rgba(36,67,96,0.13);
  transform: translateY(-4px) scale(1.01);
}
.tags {
  color: #F4B400;
  font-size: 0.88rem;
  margin-bottom: 7px;
}

/* TESTIMONIALS */
.testimonial-slider {
  background: #fff;
  box-shadow: 0 6px 32px 0 rgba(36,67,96,0.08);
  border-radius: 18px;
  margin-bottom: 64px;
  padding: 40px 0;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #F1F3F6;
  color: #254360;
  padding: 20px 24px 22px 24px;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(244,180,0,0.16);
  min-width: 220px;
  flex: 1 1 300px;
  margin-bottom: 20px;
  transition: box-shadow .16s, background .12s;
}
.testimonial-card:hover {
  background: #fffbea;
  box-shadow: 0 8px 38px 0 rgba(244,180,0,0.22);
}
.testimonial-card p {
  font-size: 1.13rem;
  font-weight: 500;
  color: #374D68;
}
.testimonial-card span {
  font-size: 0.96rem;
  font-weight: 700;
  color: #254360;
}

/* NEWSLETTER SIGNUP */
.newsletter-signup {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 60px;
  box-shadow: 0 2px 17px 0 rgba(36, 67, 96, 0.10);
  padding: 36px 20px 32px 20px;
  text-align: left;
}
.newsletter-signup h2 {
  color: #254360;
  margin-bottom: 12px;
}
.newsletter-signup p {
  margin-bottom: 16px;
}

/* FOOTER */
footer {
  background: #254360;
  color: #fff;
  padding: 44px 0 24px 0;
  margin-top: 0;
  border-radius: 0 0 27px 27px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 11px;
}
.footer-nav a {
  color: #F4B400;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .01em;
}
.footer-nav a:hover {
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  font-size: 0.99rem;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 5px;
  vertical-align: middle;
}
.footer-brand {
  color: #e5e5e5;
  font-size: 0.96rem;
  margin-top: 6px;
}

/* SPECIAL LISTS (TEAM, FAQ, STEPS) */
.team-list, .category-list, .tip-list, .value-icons, .benefit-list, .step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 12px;
}
.team-list li, .step-list li, .benefit-list li, .value-icons li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 13px 0 rgba(36,67,96,0.09);
  padding: 20px 16px 16px 16px;
  min-width: 180px;
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
.value-icons li img, .team-values ul li img, .step-list li img, .benefit-list li img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  vertical-align: middle;
}

/* FAQ ACCORDION (SIMPLE STATIC) */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 14px 0 rgba(244,180,0,0.09);
  padding: 16px 18px;
  transition: box-shadow .15s, background .13s;
}
.faq-item:hover {
  background: #fffbea;
  box-shadow: 0 6px 24px 0 rgba(244,180,0,0.15);
}
.faq-item h3 {
  margin-bottom: 9px;
  color: #254360;
}
.faq-item p {
  color: #374D68;
}

/* ADDRESS BLOCK */
.address-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.address-block div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.address-block img {
  width: 21px;
  height: 21px;
  margin-right: 6px;
  vertical-align: middle;
}

/* MAP */
.map {
  margin-bottom: 16px;
}

/* SEARCH FIELD */
.search-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 100%;
  max-width: 370px;
  margin-bottom: 10px;
}
.search-field label {
  font-size: 1rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 3px;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: .01em;
}
.search-field input[type='text'] {
  background: #fff;
  color: #254360;
  font-size: 1rem;
  border: 2px solid #F4B400;
  border-radius: 9px;
  padding: 10px 13px;
  font-weight: 700;
  font-family: 'Roboto', Arial, sans-serif;
  outline: none;
  transition: border .15s;
  width: 100%;
  box-sizing: border-box;
}
.search-field input[type='text']:focus {
  border-color: #254360;
}

/* LEGAL / POLICY PAGES */
.legal {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 68px;
  box-shadow: 0 2px 16px 0 rgba(36,67,96,0.11);
  padding: 40px 20px 28px 20px;
}
.legal h1, .legal h2 {
  color: #254360;
  margin-bottom: 18px;
}
.legal ul {
  margin-bottom: 14px;
  padding-left: 16px;
}
.legal li {
  margin-bottom: 7px;
  color: #374D68;
}

/* MEDIA QUERIES FOR RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .feature-grid, .category-list, .service-grid, .workshops-grid, .blog-cards, .tip-list, .testimonial-list {
    gap: 18px;
  }
}
@media (max-width: 992px) {
  .feature, .category-item, .service-card, .workshop-item, .blog-card, .testimonial-card {
    min-width: 160px;
    flex: 1 1 180px;
  }
}
@media (max-width: 830px) {
  .feature-grid, .category-list, .service-grid, .workshops-grid, .blog-cards, .tip-list, .testimonial-list {
    gap: 11px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .category-list, .service-grid, .workshops-grid, .blog-cards, .tip-list, .testimonial-list {
    flex-direction: column;
    gap: 20px;
  }
  .feature, .category-item, .service-card, .workshop-item, .blog-card, .testimonial-card, .team-list li {
    min-width: 0;
    flex: 1 1 100%;
  }
  footer .container {
    padding: 0 8px;
    gap: 14px;
  }
  .footer-nav {
    gap: 10px;
  }
}
@media (max-width: 650px) {
  .container {
    padding: 0 6px;
  }
  header .container {
    padding: 0 10px;
    height: 60px;
  }
  .section, .legal, .newsletter-signup {
    padding: 24px 7px;
    margin-bottom: 36px;
  }
  .testimonial-slider {
    padding: 26px 0;
  }
}

/* SPACING BETWEEN CARDS & SECTIONS */
.section, .legal {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .content-grid, .text-image-section, .feature-item, .testimonial-card {
  gap: 20px;
}
.card {
  margin-bottom: 20px;
}

/* COOKIES CONSENT BANNER/BUTTONS */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2050;
  background: #254360;
  color: #fff;
  width: 100vw;
  box-shadow: 0 -3px 24px 0 rgba(36,67,96,0.14);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 34px;
  font-size: 1.05rem;
  transition: transform 0.3s;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 10px;
    font-size: 1rem;
    gap: 10px;
  }
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  padding: 9px 22px;
  border-radius: 22px;
  border: 2px solid #F4B400;
  background: #F4B400;
  color: #254360;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  margin-right: 7px;
  cursor: pointer;
  transition: background .2s, color .2s, border .15s;
  box-shadow: 0 2px 7px 0 rgba(244,180,0,0.13);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fff;
  color: #254360;
  border: 2px solid #254360;
}
.cookie-btn.secondary {
  background: #fff;
  color: #F4B400;
  border: 2px solid #F4B400;
  font-weight: 700;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #F4B400;
  color: #254360;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(37, 67, 96, 0.67);
  z-index: 2060;
  justify-content: center;
  align-items: center;
  animation: fade-in .28s;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #254360;
  padding: 32px 22px 26px 22px;
  border-radius: 17px;
  min-width: 320px;
  max-width: 98vw;
  box-shadow: 0 8px 44px 0 rgba(36,67,96,0.18);
  display: flex;
  flex-direction: column;
  gap: 21px;
  position: relative;
  animation: slide-up .29s;
}
.cookie-modal h2 {
  font-size: 1.4rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -.01em;
  margin-bottom: 10px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 12px;
  color: #254360;
  border-radius: 50%;
  font-size: 2rem;
  background: none;
  border: none;
  transition: background .13s, color .13s;
}
.cookie-modal-close:hover {
  color: #F4B400;
  background: #F1F3F6;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #F1F3F6;
  border-radius: 11px;
  padding: 11px 18px 11px 18px;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 1.06rem;
}
.cookie-category input[type='checkbox'] {
  accent-color: #F4B400;
  width: 1.23em; height: 1.23em;
}
/* Essential cookies (disabled) */
.cookie-category.essential input[type='checkbox'] {
  accent-color: #F4B400;
}
.cookie-category.essential {
  opacity: 0.7;
  pointer-events: none;
}

@keyframes fade-in {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes slide-up {
  from { transform: translateY(60px); opacity: 0.7 }
  to { transform: translateY(0px); opacity: 1 }
}

/* ENSURE BUTTONS/TABLES FORMS ARE BOLD & CONSISTENT */
button, input[type="submit"], input[type="button"], input[type="reset"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: .01em;
  font-size: 1rem;
  cursor: pointer;
}

input[type="text"], input[type="email"], textarea {
  border: 2px solid #254360;
  border-radius: 7px;
  font-size: 1rem;
  padding: 9px 12px;
  color: #254360;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 14px;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #F4B400;
  outline: none;
}

/* THANK YOU SECTION */
.thank-you h1 {
  color: #fff;
}
.thank-you .cta.primary {
  margin-top: 20px;
}

/* COLOR/CONTRAST FIXES FOR REVIEW & TESTIMONIALS */
.testimonial-slider, .testimonial-card {
  background: #fff;
  color: #254360;
}
.testimonial-card p {
  color: #254360 !important;
}

/* Misc tiny helpers */
::-webkit-scrollbar {
  width:10px;
}
::-webkit-scrollbar-thumb {
  background: #F4B400;
  border-radius: 9px;
}
::-webkit-scrollbar-track {
  background: #F1F3F6;
}

/* Hide cookie/settings banner print */
@media print {
  .cookie-banner, .cookie-modal-overlay, .mobile-menu { display: none !important; }
}

/* Extra: hide modal/overlay when not active */
.cookie-modal-overlay:not(.active) {display:none !important}