/* =======================================================
   CSS 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;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #F4F4F8;
  color: #2F4858;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #2F4858;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F6AE2D;
}
ul, ol {
  margin: 0 0 1.5em 1.5em;
  padding-left: 1em;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
  display: block;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  color: #2F4858;
  margin-bottom: 12px;
  font-weight: 900;
  line-height: 1.2;
}

/* =========================
   Typography (Modern Bold)
   ========================= */
h1 {
  font-size: 2.75rem;
  letter-spacing: -1.2px;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.5rem;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
p, li, blockquote {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #2F4858;
  margin-bottom: 0.9em;
  line-height: 1.7;
}
blockquote {
  font-style: italic;
  color: #2F4858;
  background: #FFF;
  border-left: 4px solid #F6AE2D;
  padding: 16px 24px;
  margin: 0 0 10px 0;
}
strong {
  font-weight: 900;
  color: #2F4858;
}

/* =========================
   Layout Containers
   ========================= */
.container {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 10px;
    margin-bottom: 36px;
  }
}

/* =========================
   Header & Navigation
   ========================= */
header {
  background: #FFF;
  box-shadow: 0 2px 12px 0 rgba(47,72,88,0.06);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1001;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 0 20px;
  height: 80px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #2F4858;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 8px;
  position: relative;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: #F6AE2D;
  color: #2F4858;
}
header nav a.cta-btn {
  background: #F6AE2D;
  color: #2F4858;
  font-family: 'Merriweather', serif;
  font-weight: 900;
  font-size: 1.12rem;
  padding: 11px 22px;
  border-radius: 32px;
  margin-left: 18px;
  box-shadow: 0 3px 20px 0 rgba(246,174,45,0.11);
  text-transform: none;
  transition: background 0.2s, box-shadow 0.2s;
}
header nav a.cta-btn:hover, header nav a.cta-btn:focus {
  background: #2F4858;
  color: #FFF;
  box-shadow: 0 5px 22px 0 rgba(47,72,88,0.10);
}
.mobile-menu-toggle {
  display: none;
  background: #F6AE2D;
  border: none;
  color: #2F4858;
  font-size: 2.2rem;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  z-index: 1005;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #2F4858;
  color: #FFF;
}

/* Hide nav on mobile, show menu button */
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* =========================
   Mobile Menu Overlay
   ========================= */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #2F4858;
  z-index: 3000;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.77,0,.18,1);
  box-shadow: 2px 0 20px rgba(47, 72, 88, 0.14);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #F6AE2D;
  color: #2F4858;
  border: none;
  align-self: flex-end;
  margin: 20px 20px 0 0;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  z-index: 3002;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #FFF;
  color: #F6AE2D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 26px 0 0 36px;
  gap: 22px;
}
.mobile-nav a {
  color: #FFF;
  font-family: 'Merriweather', serif;
  font-weight: 900;
  font-size: 1.22rem;
  letter-spacing: 0.03em;
  padding: 12px 0 12px 5px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F6AE2D;
  color: #2F4858;
}

/* Hide mobile menu by default */
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =========================
   Hero / Call to Action
   ========================= */
.cta-btn {
  background: #F6AE2D;
  color: #2F4858;
  font-family: 'Merriweather', serif;
  font-weight: 900;
  font-size: 1.17rem;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 32px;
  padding: 13px 36px;
  margin: 20px 0 0 0;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(246,174,45,0.13);
  transition: background 0.2s, color 0.2s, box-shadow 0.22s, transform 0.13s;
  display: inline-block;
  text-align: center;
  text-transform: none;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #2F4858;
  color: #FFF;
  box-shadow: 0 6px 30px rgba(47,72,88,0.11);
  transform: translateY(-2px) scale(1.03);
}

/* =========================
   Cards, Features, Services
   ========================= */
.feature-grid, .content-grid, .card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature,
.service-card,
.card {
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 3px 18px 0 rgba(47,72,88,0.13);
  padding: 30px 24px 24px 24px;
  margin-bottom: 20px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  min-width: 250px;
  max-width: 340px;
  transition: box-shadow 0.23s, transform 0.18s;
}
.feature:hover, .service-card:hover, .card:hover {
  box-shadow: 0 8px 38px 0 rgba(47,72,88,0.14);
  transform: translateY(-4px) scale(1.02);
  z-index: 1;
}
.feature img {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}
.feature h3, .service-card h3 {
  font-size: 1.18rem;
  color: #F6AE2D;
  margin-bottom: 10px;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.usp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
  margin-bottom: 12px;
}
.usp-badges li {
  background: #F6AE2D;
  color: #2F4858;
  font-weight: 900;
  border-radius: 40px;
  padding: 8px 20px;
  font-size: 1rem;
  font-family: 'Merriweather', serif;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

@media (max-width: 1020px) {
  .feature-grid, .content-grid, .card-container {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
  }
  .feature,
  .service-card,
  .card {
    min-width: 190px;
    max-width: 100%;
    flex-basis: 98%;
  }
}
@media (max-width: 620px) {
  .feature-grid, .content-grid, .card-container {
    flex-direction: column;
    gap: 12px;
  }
  .feature,
  .service-card,
  .card {
    min-width: 0;
    padding: 20px 14px 15px 14px;
  }
}

/* =========================
   Testimonial Cards
   ========================= */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 3px 20px 0 rgba(47,72,88,0.13);
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 560px;
  color: #2F4858;
  transition: box-shadow 0.23s, transform 0.15s;
  border-left: 7px solid #F6AE2D;
}
.testimonial-card:hover {
  box-shadow: 0 10px 44px 0 rgba(246,174,45,0.14);
  transform: scale(1.01) translateY(-1px);
}
.testimonial-card blockquote {
  color: #2F4858;
  background: none;
  border-left: none;
  font-size: 1.02rem;
  margin: 0 0 8px 0;
}
.testimonial-card p {
  margin-bottom: 0;
  color: #2F4858;
}
@media (min-width: 840px) {
  .testimonial-card {
    margin-right: 30px;
  }
}

/* =========================
   Spacing & Pattern Classes
   (Mandatory)
   ========================= */
.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;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}

/* =========================
   FAQ Accordion Styles
   ========================= */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0 2px 10px 0 rgba(47,72,88,0.07);
  margin-bottom: 10px;
  padding: 18px 22px;
  transition: box-shadow 0.11s;
}
.faq-item h3 {
  font-size: 1.13rem;
  color: #F6AE2D;
  margin-bottom: 6px;
  font-family: 'Merriweather', serif;
  font-weight: 900;
  cursor: pointer;
}
.faq-item > div {
  font-size: 0.99rem;
  color: #2F4858;
  display: block;
}

/* =========================
   Text Section
   ========================= */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.map-static {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 12px;
}

/* =========================
   Footer
   ========================= */
footer {
  background: #2F4858;
  color: #FFF;
  padding: 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px 20px 40px 20px;
  gap: 32px;
}
footer nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}
footer nav a {
  color: #FFF;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
  transition: color 0.19s;
}
footer nav a:hover, footer nav a:focus {
  color: #F6AE2D;
  text-decoration: underline;
}
footer .text-section p, footer .text-section a {
  color: #FFF;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 8px;
}
footer img {
  margin-bottom: 18px;
}
@media (max-width: 1024px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 22px 14px 28px 14px;
  }
}

/* =========================
   Responsive Typography
   ========================= */
@media (max-width: 650px) {
  h1 {
    font-size: 2rem;
    margin-bottom: 18px;
  }
  h2 {
    font-size: 1.45rem;
    margin-bottom: 13px;
  }
  h3 {
    font-size: 1.06rem;
    margin-bottom: 7px;
  }
}

/* =========================
   Misc Visuals and Effects
   ========================= */
::-webkit-scrollbar {
  width: 10px;
  background: #F4F4F8;
}
::-webkit-scrollbar-thumb {
  background: #E0E1E9;
  border-radius: 8px;
}

::selection {
  background: #F6AE2D;
  color: #2F4858;
}

hr {
  border: 0;
  border-top: 2px solid #F6AE2D;
  margin: 26px 0;
}

/* =========================
   List Bullets
   ========================= */
ul li::marker, ol li::marker {
  color: #F6AE2D;
  font-size: 1.07em;
  font-weight: bold;
}

/* =========================
   Responsive Utilities
   ========================= */
@media (max-width: 480px) {
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .section {
    padding-left: 6px;
    padding-right: 6px;
  }
}

/* =========================
   Button Styles
   ========================= */
button, .cta-btn {
  font-family: 'Merriweather', serif;
  border: none;
  outline: none;
  cursor: pointer;
  font-weight: 900;
  border-radius: 32px;
  transition: background 0.2s, color 0.2s, transform 0.13s;
}
button:active, .cta-btn:active {
  transform: scale(0.97);
}

/* =============================
   Cookie Consent Banner & Modal
   ============================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #2F4858;
  color: #FFF;
  padding: 22px 16px 20px 16px;
  box-shadow: 0 -2px 20px 2px rgba(47,72,88,0.16);
  z-index: 4000;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  animation: cookie-slide-up 0.55s cubic-bezier(0.61,0,0.21,1);
}
@keyframes cookie-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin: 0;
  font-size: 1rem;
  color: #FFF;
  flex: 1 1 220px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-btn {
  font-family: 'Merriweather', serif;
  font-weight: 900;
  border: none;
  border-radius: 32px;
  padding: 9px 20px;
  font-size: 1rem;
  margin-left: 0;
  margin-right: 0;
  cursor: pointer;
  background: #F6AE2D;
  color: #2F4858;
  box-shadow: 0 2px 10px rgba(246,174,45,0.12);
  transition: background 0.19s, color 0.19s, transform 0.13s;
}
.cookie-btn.reject {
  background: #FF7350;
  color: #FFF;
}
.cookie-btn.settings {
  background: #FFF;
  color: #2F4858;
  border: 2px solid #F6AE2D;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: #2F4858;
  color: #FFF;
}
.cookie-btn.settings:focus, .cookie-btn.settings:hover {
  background: #F6AE2D;
  color: #2F4858;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(47,72,88,0.70);
  z-index: 4002;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein 0.36s;
}
@keyframes fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #FFF;
  color: #2F4858;
  border-radius: 28px;
  padding: 38px 28px 30px 28px;
  max-width: 410px;
  min-width: 260px;
  box-shadow: 0 6px 34px rgba(47,72,88,0.19);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookie-modal-in 0.33s cubic-bezier(.73,0,.11,1);
}
@keyframes cookie-modal-in {
  from { transform: translateY(44px) scale(0.93); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.31rem;
  color: #F6AE2D;
  margin-bottom: 10px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Merriweather', serif;
  font-size: 1.03rem;
  line-height: 1.51;
  color: #2F4858;
  margin-bottom: 12px;
}
.cookie-modal input[type='checkbox'] {
  accent-color: #F6AE2D;
  width: 18px;
  height: 18px;
}
.cookie-modal .cookie-category {
  margin-bottom: 9px;
  padding-bottom: 5px;
  border-bottom: 1px solid #EDEDED;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  color: #2F4858;
  border: none;
  font-size: 1.6rem;
  border-radius: 8px;
  width: 32px; height: 32px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #F6AE2D;
  color: #2F4858;
}
@media (max-width: 530px) {
  .cookie-modal {
    max-width: 94vw;
    padding: 24px 7px 19px 7px;
  }
}

/* =========================
   Accessibility Improvements
   ========================= */
:focus-visible {
  outline: 2.5px solid #F6AE2D;
  outline-offset: 1.5px;
}

/* =========================
   Geometric & Modern Shapes
   ========================= */
.feature, .service-card, .card, .testimonial-card, .faq-item {
  border-radius: 22px;
}
.cta-btn, .cookie-btn, button, .feature-grid .feature, .service-card {
  border-radius: 32px;
}

/* Add subtle colored shapes to hero (optional decorative) */
.section:first-child::before {
  content: '';
  position: absolute;
  z-index: 0;
  left: -100px;
  top: -60px;
  width: 200px;
  height: 200px;
  background: #F6AE2D;
  border-radius: 40% 60% 60% 40%/50% 40% 60% 50%;
  opacity: 0.09;
  pointer-events: none;
  display: block;
}
.section:first-child .container {
  position: relative;
  z-index: 1;
}

/* =========================
   Hide elements visually
   ========================= */
.sr-only {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/* =========================
   Animation for micro-interactions
   ========================= */
.card, .feature, .service-card, .testimonial-card, .faq-item {
  will-change: transform, box-shadow;
}

/* =========================
   Table Styles (if used)
   ========================= */
table {
  width: 100%;
  border-collapse: collapse;
  background: #FFF;
  margin-bottom: 20px;
}
th, td {
  padding: 12px 14px;
  border-bottom: 1px solid #F6AE2D;
  text-align: left;
  font-size: 1rem;
}
th {
  background: #F6AE2D;
  color: #2F4858;
  font-family: 'Merriweather', serif;
  font-size: 1.08rem;
  font-weight: 900;
}

/* =========================
   Misc Fixes
   ========================= */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 10px;
  border: 1.5px solid #E0E1E9;
  padding: 8px 10px;
  font-size: 1rem;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid #F6AE2D;
  border-color: #F6AE2D;
}

/*  ===== END ==== */
