/* 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,
u, i, center,
dl, dt, dd, menu, 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,
main, 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, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.55;
  background: #F0F4F8;
  color: #223447;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #29547A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F59432;
  text-decoration: underline;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}
ul, ol {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

/* TYPOGRAPHY --------------------- */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #29547A;
  margin-bottom: 24px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #29547A;
  margin-bottom: 20px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  color: #29547A;
  margin-bottom: 16px;
}
p, li, label, address, span {
  font-size: 1rem;
  color: #223447;
  line-height: 1.6;
}
strong {
  font-weight: 700;
  color: inherit;
}

/* CONTAINER --------------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* HEADER & NAVIGATION --------------------- */
header {
  background: linear-gradient(90deg, #29547A 60%, #F59432 100%);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  gap: 20px;
}
header img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #F0F4F8;
  padding: 6px 10px;
  transition: color 0.2s, background 0.2s;
  border-radius: 6px;
}
.main-nav a.active,
.main-nav a:hover,
.main-nav a:focus {
  color: #F59432;
  background: #ffffff22;
}
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(90deg, #F59432 60%, #29547A 100%);
  border: none;
  border-radius: 28px;
  padding: 11px 32px;
  margin-left: 18px;
  box-shadow: 0 2px 8px rgba(41,84,122,0.13);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  cursor: pointer;
  text-align: center;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #29547A 40%, #F59432 100%);
  color: #fff;
  box-shadow: 0 6px 32px rgba(41,84,122,0.18);
  text-decoration: none;
}

/* MOBILE BURGER NAV ---------------------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #29547A;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  cursor: pointer;
  width: 48px;
  height: 48px;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px 30px 20px 30px;
  background: #f0f4f8;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 1200;
  transition: transform 0.33s cubic-bezier(0.68, -0.015, 0.265, 1.5);
  box-shadow: 0 0 48px rgba(41,84,122,.16);
  transform: translateX(-100%);
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  border: none;
  background: none;
  font-size: 2rem;
  position: absolute;
  top: 18px;
  right: 20px;
  color: #29547A;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #F59432;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 36px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: #29547A;
  padding: 12px 8px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(41,84,122,0.07);
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F59432;
  color: #fff;
}

/* HERO SECTION ---------------------- */
.hero {
  background: linear-gradient(100deg, #F0F4F8 70%, #F59432 130%);
  padding: 64px 0 48px 0;
  display: flex;
  align-items: center;
  min-height: 360px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 620px;
  gap: 16px;
}
.hero h1 {
  color: #29547A;
  font-size: 2.7rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.28rem;
  color: #223447;
  margin-bottom: 22px;
}
.hero .cta-btn {
  font-size: 1.12rem;
  padding: 12px 32px;
}

/* GENERAL SECTION SPACING --------------- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(41,84,122,0.06);
}
section.hero, section.cta {
  box-shadow: none;
  border-radius: 0;
  background: none;
  margin-bottom: 48px;
}
section.cta .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 12px;
}
section.cta {
  background: linear-gradient(90deg, #29547A 70%, #F59432 160%);
  color: #fff;
  padding: 48px 20px 52px 20px;
  margin-bottom: 0;
}
section.cta h2, section.cta p {
  color: #fff;
}
section.cta .cta-btn {
  margin-top: 8px;
}

/* FEATURE GRID/LISTING --------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 8px;
  margin-bottom: 0;
  justify-content: space-between;
}
.feature-grid li {
  background: #F0F4F8;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(41,84,122,0.06);
  padding: 28px 22px 22px 22px;
  flex: 1 1 200px;
  min-width: 190px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.feature-grid img {
  height: 48px;
  width: 48px;
  margin-bottom: 6px;
}
.feature-grid strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  color: #29547A;
}

/* CARD/CONTENT CONTAINERS (for consistency) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 3px 12px 0 rgba(41,84,122,0.08);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 18px 22px 18px;
  gap: 12px;
}

.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;
}
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F0F4F8;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(41,84,122,0.09);
  min-width: 280px;
  max-width: 380px;
  margin-bottom: 20px;
}
.testimonial-card .stars {
  color: #F59432;
  font-size: 1.3rem;
  margin-bottom: -7px;
}
.testimonial-card p {
  color: #223447;
  font-size: 1.08rem;
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 0.99rem;
  color: #29547A;
  font-weight: 600;
}

/* PRICING & INFO BOXES ------------------- */
.price-box, .price-comparison {
  background: #FFF6ED;
  border-left: 4px solid #F59432;
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 1.05rem;
  color: #223447;
  margin-top: 18px;
  margin-bottom: 6px;
  box-shadow: 0 2px 6px rgba(41,84,122,0.04);
}
.price-box strong {
  color: #B35A00;
}
.price-comparison {
  margin-bottom: 12px;
}
.faq ul {
  margin-top: 14px;
}
.faq-list {
  margin-top: 10px;
  margin-bottom: 0;
}
.faq-list li {
  margin-bottom: 12px;
  color: #223447;
}

/* TEXT SECTIONS -------------------------- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.text-section ul,
.text-section ol {
  padding-left: 26px;
  margin-top: 8px;
}
.text-section li {
  margin-bottom: 8px;
  marker: none;
}

/* MAP PLACEHOLDER ------------------------ */
.map-placeholder {
  background: #F0F4F8;
  border-radius: 10px;
  padding: 24px;
  color: #29547A;
  font-size: 1.03rem;
  margin-top: 8px;
  text-align: center;
  box-shadow: 0 1px 8px 0 rgba(41,84,122,0.08);
}

/* FOOTER ------------------- */
footer {
  background: #29547A;
  padding: 44px 0 20px 0;
  color: #fff;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-nav a {
  color: #F0F4F8;
  font-size: 1rem;
  transition: color 0.23s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F59432;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.footer-info img {
  height: 39px;
  width: auto;
}
.footer-info address {
  font-style: normal;
  color: #F0F4F8;
}
.footer-info a {
  color: #F59432;
}
.footer-info span {
  font-size: 0.97rem;
  color: #F0F4F8;
}

/* COOKIE CONSENT BANNER ----------------- */
.cookie-banner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  padding: 18px 20px;
  background: #fff6ed;
  border-top: 3px solid #F59432;
  box-shadow: 0 -1px 16px 0 rgba(41,84,122,0.10);
  z-index: 1300;
  animation: cookieFadeIn 0.4s;
}
@keyframes cookieFadeIn {
  from { opacity: 0; transform: translateY(70px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  color: #29547A;
  font-size: 1.02rem;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 11px;
}
.cookie-btn, .cookie-btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 24px;
  padding: 8px 18px;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
}
.cookie-btn-primary {
  background: #29547A;
  color: #fff;
}
.cookie-btn-primary:hover, .cookie-btn-primary:focus {
  background: #F59432;
  color: #fff;
}
.cookie-btn {
  background: #fff;
  color: #29547A;
  border: 1.5px solid #29547A;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #F59432;
  color: #fff;
  border: 1.5px solid #F59432;
}

/* COOKIE MODAL ------------------ */
.cookie-modal-overlay {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1400;
  background: rgba(41,84,122,0.40);
  animation: modalFadeIn 0.25s;
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff6ed;
  border: 2px solid #F59432;
  border-radius: 16px;
  box-shadow: 0 8px 36px 0 rgba(41,84,122,0.18);
  width: 98%;
  max-width: 430px;
  padding: 34px 26px 28px 26px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  animation: modalPopIn 0.24s;
}
@keyframes modalPopIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  color: #29547A;
  font-weight: 600;
  margin-bottom: 14px;
}
.cookie-modal ul {
  margin-top: 6px;
  margin-bottom: 18px;
  padding-left: 16px;
}
.cookie-modal li {
  color: #223447;
  margin-bottom: 7px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.01rem;
  color: #29547A;
}
.cookie-modal .cookie-toggle {
  margin-left: 0;
  accent-color: #F59432;
}
.cookie-modal .cookie-modal-buttons {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  justify-content: flex-end;
}

/* COMMON UTILITY ----------------- */
.mt-32 { margin-top: 32px !important; }
.mb-24 { margin-bottom: 24px !important; }
.gap-24 { gap: 24px !important; }
.rounded-16 { border-radius: 16px !important; }

/* FLEXBOX PATTERNS ----------------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.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;
}

/* BUTTONS & LINKS ----------------------------- */
button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  transition: background 0.2s;
}
button:focus-visible {
  outline: 2px solid #F59432;
}

/* ANIMATIONS & MICRO-INTERACTIONS ------------ */
.cta-btn, .feature-grid li, .testimonial-card, .price-box, .cookie-btn, .cookie-btn-primary {
  transition: box-shadow 0.18s, background 0.18s, color 0.18s, transform 0.20s;
}
.feature-grid li:hover, .feature-grid li:focus-within,
.card:hover, .card:focus-within,
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(41,84,122,0.13);
  transform: translateY(-3px) scale(1.016);
}

/* MEDIA QUERIES ------------------------------- */
@media (max-width: 1150px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 960px) {
  .feature-grid {
    gap: 19px;
  }
  .footer-info {
    gap: 9px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .main-nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
  }
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: space-between;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    min-height: 240px;
    padding: 38px 0 18px 0;
  }
  .feature-grid {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .feature-grid li, .card, .testimonial-card {
    max-width: 99vw;
    min-width: 0;
  }
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  section {
    padding: 24px 5px;
    margin-bottom: 38px;
    border-radius: 10px;
  }
  section.cta {
    padding: 32px 8px 36px 8px;
  }
  .testimonials {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    padding: 16px 8px 15px 8px;
  }
  .content-wrapper {
    gap: 17px;
  }
  .price-box, .price-comparison {
    padding: 12px 8px;
    font-size: 0.98rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 510px) {
  h1, .h1 { font-size: 1.6rem !important; }
  h2, .h2 { font-size: 1.22rem !important; }
  .footer-nav {
    gap: 8px; 
  }
  .mobile-nav a {
    font-size: 1rem;
    padding: 9px 4px;
  }
  .cookie-modal {
    padding: 14px 7px 18px 7px;
    border-radius: 9px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 8px;
  }
}

/* END OF CSS */