/* ================================================== */
/*  CSS 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, 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, 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;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  font-family: Arial, Helvetica, sans-serif;
  background: #FFFDF8;
  color: #222;
  font-size: 16px;
  min-height: 100vh;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #245F52;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFC446;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
strong, b {
  font-weight: 700;
}


/* ================================================== */
/*  Typography                                        */
/* ================================================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800,900&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: #245F52;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  color: #F97856;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
}
.subheadline {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  color: #245F52;
  font-weight: 400;
  margin-bottom: 24px;
}
p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #333;
}


/* ================================================== */
/*  Layout & Containers                               */
/* ================================================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Artistic/Creative Effects */
.hero {
  background: #FFD760;
  border-radius: 0 0 70px 0 / 0 0 100px 0;
  padding: 60px 0 48px 0;
  position: relative;
  box-shadow: 0 4px 20px 0 rgba(249,120,86,0.06);
  margin-bottom: 60px;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
}

/* Main Nav/Responsive flex navs */
header {
  background: #245F52;
  padding: 0 0 0 0;
  border-bottom: 4px solid #FFD760;
  z-index: 111;
  width: 100%;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  min-height: 64px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  color: #FFF;
  padding: 8px 18px;
  border-radius: 40px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.23s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #FFD760;
  color: #245F52;
  box-shadow: 0 2px 8px 0 rgba(249,120,86,0.11);
}
.main-nav a.cta {
  background: #F97856;
  color: #FFF;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-left: 10px;
  transition: background 0.26s, color 0.2s;
}
.main-nav a.cta:hover {
  background: #245F52;
  color: #FFD760;
}


/* ================================================== */
/*  Features, Cards, Grids, Artistic Style            */
/* ================================================== */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 30px;
}
.features-grid > h2 {
  flex-basis: 100%;
  width: 100%;
}
.features-grid > div {
  flex: 1 1 180px;
  min-width: 156px;
  background: #FFFFFF;
  box-shadow: 0 2px 16px 2px rgba(36,95,82,0.045), 0 1px 3px 0 rgba(249,120,86,0.04);
  border-radius: 26px 56px 24px 16px / 44px 16px 36px 16px;
  padding: 32px 20px 24px 20px;
  margin-bottom: 20px;
  text-align: center;
  transition: transform 0.22s, box-shadow 0.21s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
}
.features-grid > div:hover {
  transform: translateY(-8px) rotate(-1.5deg) scale(1.03);
  box-shadow: 0 8px 30px 0 rgba(36,95,82,0.10), 0 3px 12px 0 rgba(249,120,86,0.10);
  background: #FFF8E4;
}
.features-grid img {
  max-width: 56px;
  margin-bottom: 12px;
}
.features-grid h3 {
  margin-bottom: 10px;
  color: #245F52;
  font-family: 'Montserrat';
  font-weight: 900;
}
.features-grid p {
  color: #434343;
  font-size: 1rem;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF;
  border-radius: 32px 12px 40px 20px;
  box-shadow: 0 4px 16px 0 rgba(36,95,82,0.07);
  padding: 30px 22px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 22px 3px rgba(249,120,86,0.14);
  transform: translateY(-6px) scale(1.025);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.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-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 32px;
  margin-bottom: 40px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: #FFFCEE;
  border-radius: 28px 16px 40px 20px;
  box-shadow: 0 3px 18px 0 rgba(249,120,86,0.06);
  font-size: 1.1rem;
  min-width: 260px;
  max-width: 370px;
  flex: 1 1 320px;
  margin-bottom: 20px;
  position: relative;
  border-left: 8px solid #FFD760;
  color: #222;
}
.testimonial-card p {
  color: #222;
}
.testimonial-card strong {
  color: #F97856;
  font-size: 1rem;
}
.testimonial-card:before {
  content: '\201C';
  font-size: 3.4rem;
  color: #FFD760;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  position: absolute;
  left: 16px;
  top: 0px;
  opacity: 0.12;
  z-index: 0;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}


/* ================================================== */
/*  Lists, Articles, FAQ, Service, Other Grids        */
/* ================================================== */
.service-overview, .service-list, .benefits-list, .articles-list, .quick-tips-list,
.faq-list, .popular-articles-list, .category-filters {
  margin-bottom: 30px;
}
.service-list, .benefits-list, .articles-list ul, .popular-articles-list ul, .category-filters ul,
.quick-tips-list ul, .faq-list ul {
  margin-top: 0;
}
.service-list li, .benefits-list li, .articles-list li,
.category-filters li, .quick-tips-list li, .faq-list li {
  margin-bottom: 16px;
  font-size: 1.06rem;
  padding-left: 26px;
  position: relative;
  color: #245F52;
}
.service-list li:before, .benefits-list li:before, .articles-list li:before,
.quick-tips-list li:before, .faq-list li:before {
  content: '';
  position: absolute;
  left: 5px;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #F97856;
}
.category-filters li:before {
  background: #FFD760;
}
.category-filters strong {
  color: #245F52;
  margin-right: 8px;
}
.category-filters a {
  background: #FFD760;
  color: #245F52;
  border-radius: 15px;
  font-weight: 700;
  padding: 4px 14px;
  transition: background 0.2s, color 0.2s;
  margin-right: 7px;
}
.category-filters a:hover {
  background: #F97856;
  color: #FFF;
}


/* ================================================== */
/*  Contact & Address Grids                           */
/* ================================================== */
.contact-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-info-grid > div {
  background: #FFF;
  border-radius: 28px 14px 24px 16px;
  box-shadow: 0 2px 10px 0 rgba(36,95,82,.09);
  flex: 1 1 180px;
  min-width: 170px;
  padding: 20px 16px 16px 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-direction: column;
}
.contact-info-grid img {
  width: 34px;
  height: 34px;
  margin-bottom: 7px;
}
.contact-info-grid strong {
  margin-bottom: 5px;
}
.contact-info-grid a {
  color: #F97856;
  word-break: break-all;
  text-decoration: underline;
  transition: color 0.18s;
}
.contact-info-grid a:hover {
  color: #245F52;
}


/* ================================================== */
/*  Footer                                           */
/* ================================================== */
footer {
  background: #245F52;
  color: #FFD760;
  padding: 48px 0 22px 0;
  position: relative;
  z-index: 88;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.footer-nav, .footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
}
.footer-nav a, .footer-menu a {
  color: #FFD760;
  opacity: 0.88;
  font-weight: 700;
  padding: 5px 8px;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: background 0.17s, color 0.17s;
  font-size: 0.98rem;
}
.footer-nav a:hover, .footer-menu a:hover {
  background: #FFD760;
  color: #245F52;
}
.copyright {
  font-size: 0.91rem;
  color: #FFF8E4;
  margin-top: 8px;
  opacity: 0.7;
}


/* ================================================== */
/*  Mobile Menu / Hamburger Navigation                */
/* ================================================== */
.mobile-menu-toggle {
  display: none;
  font-size: 2.3rem;
  background: none;
  border: none;
  color: #FFD760;
  cursor: pointer;
  padding: 2px 12px;
  z-index: 201;
  border-radius: 6px;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F97856;
  color: #FFF;
}

.mobile-menu {
  display: none;
}
.mobile-menu.active {
  display: flex;
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,95,82,0.97);
  z-index: 999;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  animation: slideInMenu 0.35s cubic-bezier(.77,0,.18,1) forwards;
}
@keyframes slideInMenu {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0%);   opacity: 1; }
}
@keyframes slideOutMenu {
  from { transform: translateX(0%); opacity: 1; }
  to   { transform: translateX(100%);   opacity: 0; }
}
.mobile-menu.hidden {
  animation: slideOutMenu 0.28s cubic-bezier(.77,0,.18,1) forwards;
}
.mobile-menu-close {
  margin: 26px 32px 18px 0;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #FFD760;
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 6px;
  transition: background 0.14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #F97856;
  color: #FFF;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100vw;
  align-items: flex-end;
  margin-right: 40px;
  margin-top: 10px;
}
.mobile-nav a {
  color: #FFF;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 8px 19px;
  border-radius: 30px;
  margin-bottom: 3px;
  background: none;
  transition: background 0.12s, color 0.18s;
  border: 0;
  outline: none;
  min-width: 170px;
  text-align: right;
}
.mobile-nav a:hover {
  background: #FFD760;
  color: #245F52;
}


/* ========= Responsive Header ========= */
@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}


/* ================================================== */
/*  Cookie Consent Banner & Modal                     */
/* ================================================== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 10000;
  width: 100%;
  background: #FFFCEE;
  color: #222;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -2px 18px 0 rgba(36,95,82,0.09);
  padding: 24px 24px 20px 24px;
  gap: 24px;
  font-size: 1rem;
  animation: bannerFadeIn 0.4s;
}
@keyframes bannerFadeIn {
  0% { opacity: 0; transform: translateY(80px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-consent-banner p {
  flex-basis: 340px;
  color: #333;
  font-size: 1.01rem;
  margin: 0 0 7px 0;
}
.cookie-consent-buttons {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 9px 22px;
  border-radius: 22px;
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  margin-left: 0;
  background: #FFD760;
  color: #245F52;
  transition: background 0.17s, color 0.17s, box-shadow 0.2s;
  box-shadow: 0 2px 6px 0 rgba(249,120,86,0.08);
}
.cookie-btn.reject {
  background: #FFF;
  color: #F97856;
  border: 1px solid #FFD760;
}
.cookie-btn.settings {
  background: #245F52;
  color: #FFD760;
}
.cookie-btn:focus,
.cookie-btn:hover {
  background: #F97856;
  color: #FFF;
}
.cookie-btn.settings:focus,
.cookie-btn.settings:hover {
  background: #FFD760;
  color: #245F52;
}

/* Cookie Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; top: 0;
  z-index: 10001;
  width: 100vw;
  height: 100vh;
  background: rgba(36,95,82,0.85);
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active {
  display: flex;
  animation: bannerFadeIn 0.25s;
}
.cookie-modal {
  background: #FFF;
  border-radius: 27px 8px 33px 20px;
  max-width: 420px;
  width: 95%;
  padding: 38px 32px 25px 32px;
  box-shadow: 0 4px 18px 0 rgba(36,95,82,0.19);
  position: relative;
  text-align: left;
  color: #245F52;
}
.cookie-modal h2 {
  color: #245F52;
  font-weight: 900;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 18px;
  font-size: 1.4rem;
}
.cookie-modal label {
  font-size: 1.02rem;
  display: block;
  margin-bottom: 10px;
  padding-left: 2px;
  color: #222;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #F97856;
  margin-right: 8px;
}
.cookie-modal .modal-categories {
  margin-bottom: 32px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal .modal-close-btn {
  position: absolute;
  right: 12px; top: 10px;
  background: none;
  border: none;
  font-size: 1.45rem;
  color: #F97856;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal .modal-close-btn:hover {
  color: #245F52;
}


/* ================================================== */
/*  Buttons/CTAs                                      */
/* ================================================== */
.cta, .primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  background: #245F52;
  color: #FFF;
  padding: 14px 32px;
  border-radius: 42px 22px 56px 20px;
  font-size: 1.11rem;
  box-shadow: 0 2px 9px 0 rgba(36,95,82,0.13);
  transition: background 0.18s, color 0.18s, box-shadow 0.27s, transform 0.13s;
  margin-top: 18px;
  margin-bottom: 4px;
  border: none;
  cursor: pointer;
}
.cta.primary {
  background: #F97856;
  color: #FFF;
}
.cta.primary:hover,
.cta.primary:focus,
.cta:hover, .cta:focus {
  background: #FFD760;
  color: #245F52;
  transform: scale(1.05);
  box-shadow: 0 3px 19px 0 rgba(249,120,86,0.16);
}

/* ================================================== */
/*  Artistic Details                                  */
/* ================================================== */
/* Decorative shapes - illustration like elements can be added with pseudo elements, but here we limit to basics for compatibility */


/* ================================================== */
/*  Responsive Design                                 */
/* ================================================== */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
  }
  .features-grid > div, .card, .testimonial-card, .contact-info-grid > div {
    min-width: 142px;
  }
}
@media (max-width: 992px) {
  .features-grid {
    gap: 22px;
  }
  .testimonials-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .features-grid > div {
    flex-basis: calc(50% - 11px);
  }
  .contact-info-grid {
    flex-direction: column;
    gap: 20px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .footer-nav, .footer-menu {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.65rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .section {
    margin-bottom: 36px;
    padding: 22px 8px;
  }
  .features-grid {
    flex-direction: column;
    gap: 18px;
  }
  .features-grid > div {
    min-width: unset;
    flex-basis: 100%;
    align-items: center;
  }
  .testimonials-wrapper {
    gap: 16px;
    margin-top: 18px;
    margin-bottom: 20px;
    flex-direction: column;
  }
  .testimonial-card {
    min-width: unset;
    max-width: 98vw;
    padding: 18px 10px;
  }
  .content-grid, .card-container, .contact-info-grid {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 500px) {
  .hero {
    border-radius: 0 0 30px 0 / 0 0 60px 0;
    padding: 36px 0 18px 0;
  }
  header .container {
    padding-left: 7px; padding-right: 7px;
    min-height: 50px;
  }
  .footer-nav, .footer-menu {
    flex-direction: column;
    gap: 5px;
    align-items: center;
    font-size: 0.9rem;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 8px 14px 8px;
    gap: 13px;
    font-size: 0.98rem;
  }
  .cookie-consent-banner p {
    font-size: 0.95rem;
    max-width: 99vw;
  }
  .cookie-modal {
    padding: 18px 7vw 16px 7vw;
  }
}

/* ========== Accessibility & Misc ========== */
:focus {
  outline: 2px solid #FFD760;
  outline-offset: 2px;
}

::-webkit-scrollbar {
  width: 6px;
  background: #FFD760;
}
::-webkit-scrollbar-thumb {
  background-color: #F97856;
  border-radius: 12px;
}


/* End CSS */
