/* CSS RESET & BASELINE ----------------------------------------- */
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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: linear-gradient(135deg, #eaebed 0%, #ffffff 100%);
  color: #1B365D;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  transition: background 0.3s;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #1B365D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B65518;
}
ul, ol {
  padding-left: 1.1em;
  margin-bottom: 16px;
}
ul li {
  margin-bottom: 8px;
}

/* TYPOGRAPHY ----------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', 'serif';
  color: #1B365D;
  font-weight: 700;
  line-height: 1.25;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.text-section h3 {
  margin-top: 16px;
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
}
blockquote {
  font-style: italic;
  color: #1B365D;
  background: #EAEBED;
  border-left: 4px solid #DF7126;
  margin: 8px 0 8px 0;
  padding: 12px 16px;
  border-radius: 8px;
}

/* BUTTONS ------------------------------------------------------- */
.btn-primary {
  display: inline-block;
  background: linear-gradient(90deg, #DF7126 30%, #B65518 90%);
  color: #FFFFFF !important;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 16px 32px;
  border: none;
  border-radius: 30px;
  transition: box-shadow 0.2s, background 0.3s, transform 0.2s;
  box-shadow: 0 2px 8px 0 rgba(27,54,93,0.08);
  cursor: pointer;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #B65518 20%, #DF7126 100%);
  box-shadow: 0 6px 18px 0 rgba(27,54,93,0.14);
  transform: translateY(-2px) scale(1.03);
}

/* LAYOUT: CONTAINER / WRAPPERS ---------------------------------- */
.container {
  width: 100%;
  max-width: 1164px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 18px 0 rgba(27,54,93,0.04);
}

/* HEADER -------------------------------------------------------- */
header {
  background: linear-gradient(90deg, #1B365D 30%, #DF7126 100%);
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(27,54,93,0.06);
  position: sticky;
  top: 0;
  z-index: 1002;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.2s;
  padding: 4px 0;
}
header nav a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #DF7126;
  transition: width 0.2s;
  margin-top: 2px;
}
header nav a:hover:after, header nav a:focus:after {
  width: 100%;
}
header nav a.active {
  color: #DF7126;
}
header .btn-primary {
  margin-left: 16px;
  font-size: 1rem;
  padding: 10px 24px;
  background: linear-gradient(90deg, #DF7126 40%, #B65518 100%);
  border-radius: 25px;
}
/* Burger button */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #fff;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  margin-left: 12px;
  transition: color 0.2s;
  z-index: 1003;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #DF7126;
}
/* MOBILE MENU --------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #1B365D;
  color: #fff;
  z-index: 10011;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.67,0,.34,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  min-width: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  margin-top: 24px;
  margin-right: 28px;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 10012;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #DF7126;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  font-size: 1.4rem;
  margin: 32px 0 0 40px;
}
.mobile-nav a {
  color: #fff;
  padding: 8px 0;
  border-radius: 4px;
  width: 100%;
  display: block;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.16s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #B65518;
  color: #fff;
}

/* HERO SECTION -------------------------------------------------- */
.hero {
  background: linear-gradient(120deg, #EAEBED 60%, #DF7126 100%);
  padding: 64px 0 48px 0;
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
  box-shadow: 0 8px 40px 0 rgba(27,54,93,0.08);
  margin-bottom: 60px;
}
.hero h1 {
  color: #1B365D;
}
.hero p {
  font-size: 1.15rem;
  margin-bottom: 32px;
  color: #1B365D;
}
/* FEATURE GRID -------------------------------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
}
.feature-grid > li, .feature-grid > div {
  background: #fff;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 340px;
  box-shadow: 0 4px 18px 0 rgba(27,54,93,0.08);
  margin-bottom: 20px;
  border-radius: 16px;
  padding: 24px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  transition: transform 0.18s, box-shadow 0.21s;
  position: relative;
}
.feature-grid > li:hover, .feature-grid > div:hover {
  box-shadow: 0 10px 32px 0 rgba(214,113,38,0.12);
  transform: translateY(-4px) scale(1.025);
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}
.feature-grid strong {
  color: #1B365D;
  font-size: 1.08em;
  font-weight: 700;
}

/* HIGHLIGHTS GRID ----------------------------------------------- */
.highlight-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 12px;
}
.highlight-grid > div {
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 320px;
  margin-bottom: 20px;
  background: #EAEBED;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(27,54,93,0.04);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: box-shadow 0.2s, background 0.2s;
}
.highlight-grid > div:hover {
  background: #DF7126;
  color: #fff;
  box-shadow: 0 8px 28px 0 rgba(27,54,93,0.11);
}
.highlight-grid > div a {
  color: #B65518;
  font-weight: 600;
  margin-top: 6px;
}
.highlight-grid > div:hover a {
  color: #fff;
}

/* CARD CONTAINERS ----------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px 0 rgba(27,54,93,0.09);
  padding: 24px 20px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.21s, transform 0.21s;
}
.card:hover {
  box-shadow: 0 13px 34px 0 rgba(182,85,24,0.13);
  transform: translateY(-3px) scale(1.019);
}

/* OTHER GRIDS & FLEX -------------------------------------------- */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 12px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #FFFCF7;
  color: #1B365D;
  border-left: 6px solid #DF7126;
  border-radius: 16px;
  box-shadow: 0 3px 14px 0 rgba(218, 198, 173, 0.10);
  padding: 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
  font-size: 1.1rem;
}
.testimonial-card blockquote {
  margin: 0;
  padding: 0;
  color: #B65518;
  background: none;
  border: none;
  font-size: 1.05em;
}
.testimonial-card:hover {
  box-shadow: 0 6px 36px 0 rgba(214,113,38,0.13);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
  list-style: none;
}
.contact-details li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  gap: 10px;
  margin: 0 0 12px 0;
}
.contact-details img {
  width: 28px;
  height: 28px;
}

/* SELECT/STANDARD INPUTS ---------------------------------------- */
select {
  border: 1px solid #EAEBED;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  background: #F7F8FA;
  transition: border 0.2s;
  color: #1B365D;
  margin-top: 8px;
  margin-bottom: 4px;
}
select:focus {
  border-color: #DF7126;
  outline: none;
}

/* TEXT SECTION -------------------------------------------------- */
.text-section {
  padding: 20px 0;
}
.text-section ul {
  margin-bottom: 16px;
}
.text-section a {
  color: #B65518;
  text-decoration: underline;
}
.text-section a:hover {
  color: #DF7126;
}

/* FOOTER -------------------------------------------------------- */
footer {
  background: linear-gradient(100deg, #1B365D 80%, #DF7126 120%);
  color: #fff;
  padding: 48px 0 28px 0;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  gap: 48px;
}
.footer-menus {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
}
.footer-menus nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-menus nav a {
  color: #fff;
  font-size: 1rem;
  padding: 3px 0;
  transition: color 0.2s, text-decoration 0.2s;
}
.footer-menus nav a:hover {
  color: #DF7126;
  text-decoration: underline;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.97rem;
  align-items: flex-start;
}
.footer-info img {
  width: 46px;
  margin-bottom: 6px;
}
.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 6px;
}
.footer-socials img {
  width: 28px;
  height: 28px;
  transition: opacity 0.2s, transform 0.2s;
  cursor: pointer;
}
.footer-socials img:hover {
  opacity: 0.85;
  transform: scale(1.08);
}

/* COOKIE CONSENT BANNER & MODAL --------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: #1B365D;
  box-shadow: 0 -2px 18px 0 rgba(27,54,93,0.08);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 24px;
  z-index: 19994;
  transition: transform 0.38s cubic-bezier(.53,0,.25,1);
}
.cookie-banner.hide {
  transform: translateY(130%);
}
.cookie-banner-message {
  font-size: 1.08rem;
  line-height: 1.5;
  flex: 1 0 280px;
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-btn, .cookie-btn-primary {
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 26px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.19s, color 0.16s, box-shadow 0.14s;
}
.cookie-btn-primary {
  background: linear-gradient(90deg, #DF7126 30%, #B65518 90%);
  color: #fff;
}
.cookie-btn-primary:hover, .cookie-btn-primary:focus {
  background: linear-gradient(90deg, #B65518 20%, #DF7126 100%);
}
.cookie-btn {
  background: #EAEBED;
  color: #1B365D;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #DF7126;
  color: #fff;
}
/* COOKIE MODAL */
#cookie-modal {
  display: none;
  position: fixed;
  z-index: 20000;
  top: 0; right: 0; left: 0; bottom: 0;
  background: rgba(27,54,93, 0.29);
  justify-content: center;
  align-items: center;
  transition: background 0.27s;
}
#cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: #fff;
  color: #1B365D;
  min-width: 320px;
  max-width: 96vw;
  border-radius: 22px;
  box-shadow: 0 10px 38px 0 rgba(27,54,93,0.19);
  padding: 38px 28px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #B65518;
  cursor: pointer;
  transition: color 0.21s;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  color: #DF7126;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}
.cookie-modal-content input[type="checkbox"] {
  accent-color: #DF7126;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 10px;
}

/* RESPONSIVE DESIGN (MOBILE FIRST) ------------------------------ */
@media (max-width: 1020px) {
  .container {
    max-width: 96vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer-menus {
    flex-direction: column;
    gap: 20px;
  }
  footer .container {
    gap: 15px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
  .highlight-grid,.feature-grid,.card-container {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding-left: 2vw;
    padding-right: 2vw;
  }
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    padding-left: 8px;
    padding-right: 8px;
  }
  header nav, header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    padding: 40px 0 28px 0;
    font-size: 0.99em;
  }
  .feature-grid, .highlight-grid, .card-container, .content-grid, .contact-details {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > li, .feature-grid > div, .highlight-grid > div, .card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    margin-bottom: 16px;
  }
  .section {
    padding: 22px 6px;
    margin-bottom: 34px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px;
    font-size: 1rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .footer-info {
    font-size: 0.93rem;
  }
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 6px 17px 12px;
    gap: 16px;
  }
  .cookie-banner-message {
    font-size: 1rem;
  }
  .cookie-modal-content {
    padding: 22px 8px 16px 8px;
    min-width: 0;
  }
}
@media (max-width: 500px) {
  .hero h1 {
    font-size: 1.55rem;
  }
  .hero {
    padding: 22px 0 15px 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1.07rem; }
}

/* ANIMATION KEYFRAMES ------------------------------------------- */
@keyframes slideInFromRight {
  from { transform: translateX(100%); }
  to   { transform: translateX(0);     }
}
@keyframes cookieModalFade {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1);    }
}

/* UTILITIES (SPACING, ETC) -------------------------------------- */
.mt-8  { margin-top: 8px;  }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-12 { margin-bottom: 12px; }
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }
.gap-16 { gap: 16px; }
gap-24 { gap: 24px; }

/* HIDES TEXT WHEN REQUIRED -------------------------------------- */
.sr-only {
  position: absolute!important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* END CSS */