/* -------------------------------------------------
   CSS RESET & BASELINE NORMALIZATION
--------------------------------------------------- */
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;
  background: transparent;
  box-sizing: border-box;
}
body {
  line-height: 1.5;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
*:focus {
  outline: 2px solid #E47A26;
  outline-offset: 2px;
}

/* ------------------------------
   BRAND FONTS
------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #1b3e4d;
  background: #ffffff;
  font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #245365;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
}

p, li, ul, ol, small, em {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #3c4d5c;
}

strong { font-weight: 600; }
small { font-size: 0.9em; color: #8197a6; }
em {
  color: #245365;
  font-style: normal;
}

/*------------------------------
  LAYOUT CONTAINERS
-------------------------------*/
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 24px rgba(36,83,101,0.04);
}

/*------------------------------
  HEADER, NAVIGATION & LOGO
-------------------------------*/
header {
  background: #245365;
  box-shadow: 0 4px 18px 0 rgba(33,62,77,0.04);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  padding: 6px 0;
}
.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #E8F2F6;
  font-weight: 500;
  padding: 7px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-bottom 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #E47A26;
  border-bottom: 2px solid #E47A26;
}

.cta.primary, .cta.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 12px 28px;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border-color 0.18s;
  box-shadow: 0 2px 16px rgba(36,83,101,0.08);
  margin-left: 16px;
}
.cta.primary {
  background: #E47A26;
  color: #fff;
  border: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: #245365;
  color: #fff;
}
.cta.secondary {
  background: #E8F2F6;
  color: #245365;
  border: 1.5px solid #245365;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #245365;
  color: #fff;
  border-color: #245365;
}

/* Hamburger menu button (only visible on mobile) */
.mobile-menu-toggle {
  display: none;
  background: #E47A26;
  color: #fff;
  font-size: 2rem;
  border-radius: 7px;
  padding: 9px 17px;
  margin-left: 12px;
  transition: background 0.18s;
  z-index: 300;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #245365;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
    font-size: 0.95rem;
  }
  .cta.primary, .cta.secondary {
    min-width: 118px;
    font-size: 0.95rem;
    padding: 8px 18px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
  .cta.primary, .cta.secondary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
  }
}

/*------------------------------
  MOBILE MENU OVERLAY
-------------------------------*/
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(27,62,77,0.88);
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.33s cubic-bezier(.4,1,.5,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding-top: 0;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: #fff;
  background: #245365;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px 26px 0 0;
  border: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: background 0.18s;
  z-index: 1200;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E47A26;
  color: #fff;
}
.mobile-nav {
  background: #fff;
  border-radius: 14px 0 0 14px;
  margin-top: 36px;
  min-width: 280px;
  box-shadow: -3px 0 16px rgba(27,62,77,0.07);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 36px 36px 32px;
  position: relative;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.6,0,.4,1);
}
.mobile-menu.open .mobile-nav {
  transform: translateX(0);
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  color: #245365;
  font-weight: 500;
  margin-bottom: 6px;
  padding: 9px 0 9px 2px;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E8F2F6;
  color: #E47A26;
}
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/*------------------------------
  HERO SECTION
-------------------------------*/
.hero-section {
  background: linear-gradient(85deg, #E8F2F6 84%, #fff 100%);
  padding: 64px 0 56px 0;
  border-radius: 0 0 32px 32px;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  max-width: 800px;
}
.hero-section h1 {
  color: #245365;
  font-size: 2.8rem;
  line-height: 1.15;
}
.hero-section p {
  font-size: 1.32rem;
  color: #42596a;
  margin-bottom: 18px;
}
.hero-section .cta.primary {
  margin-top: 9px;
}
@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0 28px 0;
    border-radius: 0 0 18px 18px;
  }
  .hero-section h1 {
    font-size: 1.6rem;
  }
  .hero-section p {
    font-size: 1.04rem;
  }
}

/*------------------------------
  FEATURES SECTION/CARDS
-------------------------------*/
.features-section {
  background: #fff;
  padding: 42px 0;
  margin-bottom: 0;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 24px;
}
.feature-item {
  background: #E8F2F6;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  flex: 1 1 220px;
  padding: 32px 26px 22px 26px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(36,83,101,0.06);
  transition: box-shadow 0.2s, background 0.2s;
}
.feature-item img {
  height: 52px;
}
.feature-item h3 {
  font-size: 1.25rem;
  color: #245365;
}
.feature-item p {
  color: #42596a;
  font-size: 1rem;
}
.feature-item:hover, .feature-item:focus-within {
  background: #fff;
  box-shadow: 0 6px 30px rgba(36,83,101,0.10);
}
@media (max-width: 1024px) {
  .feature-grid { gap: 18px; }
  .feature-item { padding: 24px 16px 12px 16px; }
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .feature-item {
    min-width: 0;
    width: 100%;
    padding: 18px 12px;
  }
}

/*------------------------------
  BLOG PREVIEWS/LISTS
-------------------------------*/
.blog-preview-list, .blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-preview-list article, .blog-list article {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(36,83,101,0.07);
  margin-bottom: 20px;
  padding: 26px 18px 18px 18px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 220px;
  max-width: 340px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.blog-preview-list article:hover, .blog-list article:hover {
  box-shadow: 0 6px 22px rgba(36,83,101,0.15);
  transform: translateY(-3px) scale(1.02);
}
.blog-preview-list h3, .blog-list h3 {
  color: #245365;
  font-size: 1.19rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 8px;
}
.blog-preview-list p, .blog-list p {
  font-size: 1rem;
  color: #42596a;
  flex: 1;
  margin-bottom: 10px;
}
.read-more {
  color: #E47A26;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  display: inline-block;
  margin-top: 5px;
  transition: color 0.18s, border-bottom 0.18s;
  border-bottom: 1.5px dotted #E47A26;
}
.read-more:hover, .read-more:focus {
  color: #245365;
  border-color: #245365;
}
@media (max-width: 900px) {
  .blog-preview-list, .blog-list {
    gap: 14px;
  }
  .blog-preview-list article, .blog-list article {
    max-width: 100%;
    flex-basis: 100%;
  }
}
@media (max-width: 600px) {
  .blog-preview-list, .blog-list {
    flex-direction: column;
    gap: 12px;
  }
  .blog-preview-list article, .blog-list article {
    padding: 14px 9px 12px 9px;
  }
}

.blog-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.blog-filter span {
  font-weight: 600;
  color: #245365;
  margin-right: 4px;
}
.blog-filter a {
  padding: 4px 13px;
  border-radius: 5px;
  background: #E8F2F6;
  color: #245365;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: background 0.15s, color 0.15s;
  margin-bottom: 4px;
}
.blog-filter a:hover, .blog-filter a:focus {
  background: #E47A26;
  color: #fff;
}

/*------------------------------
  CARDS, LISTS, FAQS
-------------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: 0 2px 14px rgba(36,83,101,0.07);
  border-radius: 12px;
  margin-bottom: 20px;
  position: relative;
  padding: 28px 18px 20px 18px;
  display: flex;
  flex-direction: column;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.faq-item {
  background: #E8F2F6;
  border-radius: 10px;
  padding: 24px 20px 16px 20px;
  min-width: 220px;
  flex: 1 1 250px;
  box-shadow: 0 1px 9px rgba(36,83,101,0.08);
  margin-bottom: 20px
}
.faq-item h3 {
  color: #245365;
  font-size: 1.12rem;
  margin-bottom: 4px;
}
.faq-item p {
  color: #42596a;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .faq-list {
    flex-direction: column;
    gap: 10px;
  }
  .faq-item {
    min-width: 0;
    width: 100%;
    padding: 13px 10px 8px 10px;
  }
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

ul {
  list-style: disc inside;
  margin-left: 18px;
  margin-bottom: 16px;
}
ul li {
  margin-bottom: 7px;
  font-size: 1rem;
  color: #42596a;
  display: flex;
  align-items: center;
  gap: 10px;
}

/*------------------------------
  TEXT-IMAGE SECTION (optional)
-------------------------------*/
.text-image-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 34px;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 14px; }
}

/*------------------------------
  CALL TO ACTION SECTION
-------------------------------*/
.cta-section {
  background: #E8F2F6;
  padding: 42px 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-section .content-wrapper {
  align-items: center;
}
.cta-section p {
  font-size: 1.15rem;
  color: #245365;
}
.cta-section h2 {
  color: #245365;
}
@media (max-width: 600px) {
  .cta-section {
    padding: 19px 0;
  }
}

/*------------------------------
  TESTIMONIAL CARDS/SECTIONS
-------------------------------*/
.testimonials-section {
  background: #fff;
  padding: 60px 0 48px 0;
}
.testimonials-section .content-wrapper {
  gap: 20px;
}
.testimonial-card {
  background: #E8F2F6;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(36,83,101,0.05);
  transition: box-shadow 0.2s, background 0.2s;
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #245365;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  line-height: 1.5;
}
.testimonial-card em {
  color: #3c4d5c;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  background: #fff;
  box-shadow: 0 3px 18px rgba(36,83,101,0.13);
}

/* Good contrast enforcement */
.testimonial-card,
.testimonial-card p,
.testimonial-card em {
  color: #245365;
  background: #E8F2F6;
}
.testimonial-card em { color: #42596a; }
.testimonial-card p { color: #245365; }

@media (max-width: 600px) {
  .testimonials-section, .testimonial-card {
    padding: 15px 0 10px 0;
    gap: 10px;
  }
  .testimonial-card {
    padding: 13px 7px;
  }
}

/*------------------------------
  FOOTER
-------------------------------*/
footer {
  background: #245365;
  padding: 44px 0 30px 0;
  color: #fff;
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 5px;
}
.footer-nav a {
  color: #E8F2F6;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  padding: 3px 0;
  border-bottom: 1.5px solid transparent;
  transition: color 0.2s, border-bottom 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #E47A26;
  border-bottom: 1.5px solid #E47A26;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-wrap: wrap;
  font-size: 0.97rem;
  color: #E8F2F6;
}
.footer-contact img {
  width: 20px; height: 20px;
}
footer small {
  color: #B8C5CE;
  margin-top: 11px;
}
@media (max-width: 768px) {
  footer .content-wrapper {
    gap: 14px;
    padding: 0 5px;
  }
  .footer-nav, .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
/*------------------------------
  CONTACT INFO & MAP SECTION
-------------------------------*/
.contact-info ul li {
  margin-bottom: 11px;
  line-height: 1.4;
}
.contact-info ul img {
  width: 19px; height: 19px;
}
.map-section ul li {
  margin-bottom: 7px;
}

/*------------------------------
  COOKIE CONSENT BANNER & MODAL
-------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2100;
  background: #245365;
  color: #fff;
  padding: 22px 10px 20px 10px;
  box-shadow: 0 -2px 14px rgba(27,62,77,0.22);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  transition: transform 0.35s, opacity 0.2s;
  font-size: 0.98rem;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-banner p {
  color: #fff;
  margin-right: 12px;
  font-size: 1rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  transition: background 0.16s, color 0.16s;
  margin-left: 0;
}
.cookie-banner .cookie-accept {
  background: #E47A26;
  color: #fff;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: #fff;
  color: #E47A26;
}
.cookie-banner .cookie-reject {
  background: #f5f5f5;
  color: #245365;
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: #E8F2F6;
  color: #E47A26;
}
.cookie-banner .cookie-settings {
  background: #fff;
  color: #245365;
  border: 1.2px solid #E47A26;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #E47A26;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    padding: 18px 8px 14px 8px;
    gap: 9px;
    align-items: flex-start;
  }
  .cookie-banner p {
    margin-right: 0;
    margin-bottom: 7px;
  }
}

.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(27,62,77,0.89);
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  max-width: 400px;
  width: 98vw;
  box-shadow: 0 3px 30px rgba(36,83,101,0.17);
  padding: 34px 30px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  transform: translateY(60px);
  transition: transform 0.35s cubic-bezier(.6,0,.4,1);
}
.cookie-modal-overlay.open .cookie-modal {
  transform: translateY(0);
}
.cookie-modal h2 {
  font-size: 1.37rem;
  color: #245365;
  margin-bottom: 12px;
}
.cookie-modal ul {
  margin-left: 0;
  padding-left: 0;
}
.cookie-modal li {
  border-bottom: 1px solid #E8F2F6;
  padding-bottom: 13px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal label {
  font-size: 1rem;
  color: #245365;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #E47A26;
  width: 21px; height: 21px;
}
.cookie-modal .category-essential {
  opacity: 0.62;
  pointer-events: none;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 12px;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 9px 19px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  transition: background 0.18s, color 0.16s;
}
.cookie-modal .cookie-accept {
  background: #E47A26;
  color: #fff;
}
.cookie-modal .cookie-accept:hover, .cookie-modal .cookie-accept:focus {
  background: #245365;
  color: #fff;
}
.cookie-modal .cookie-cancel {
  background: #E8F2F6;
  color: #245365;
}
.cookie-modal .cookie-cancel:hover, .cookie-modal .cookie-cancel:focus {
  background: #E47A26;
  color: #fff;
}
.cookie-modal .cookie-save {
  background: #fff;
  color: #245365;
  border: 1.2px solid #E47A26;
}
.cookie-modal .cookie-save:hover, .cookie-modal .cookie-save:focus {
  background: #E47A26;
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-modal {
    padding: 22px 7px 15px 7px;
    max-width: 95vw;
    gap: 14px;
  }
  .cookie-modal h2 {
    font-size: 1.15rem;
    margin-bottom: 5px;
  }
}

/*------------------------------
  UTILITY CLASSES & SPACING
-------------------------------*/
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.gap-1 { gap: 12px; }
.gap-2 { gap: 24px; }
.flex-row { display: flex; flex-direction: row; }
.flex-column { display: flex; flex-direction: column; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.justify-center { justify-content: center; }

/*------------------------------
  RESPONSIVE: FLEX LAYOUTS
-------------------------------*/
@media (max-width: 900px) {
  .container { padding: 0 12px; }
  .section { padding: 22px 8px; }
  .content-wrapper { gap: 16px; }
}
@media (max-width: 600px) {
  .container { padding: 0 6px; }
  .section { padding: 10px 4px; }
  .content-wrapper { gap: 9px; }
}

/*------------------------------
  SMOOTH TRANSITIONS & EFFECTS
-------------------------------*/
.button, .cta.primary, .cta.secondary, .footer-nav a, .main-nav a,
.read-more, .cookie-banner button, .cookie-modal button {
  transition: background 0.18s, color 0.18s, border 0.16s, box-shadow 0.16s, transform 0.14s;
}
section, .card, .feature-item, .testimonial-card, .faq-item {
  transition: box-shadow 0.18s, transform 0.18s;
}

/*------------------------------
  PRINT STYLE - CLEAN OUTPUT
-------------------------------*/
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
}
