/* === 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, section, article, aside, canvas, details, embed, 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 {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #234E2C;
  background: #f6fbf7;
  line-height: 1.7;
  font-size: 16px;
  position: relative;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #317187;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #ffb14c;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 24px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: #14311A;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.4rem; line-height: 1.13; margin-bottom: 16px; letter-spacing: 0.01em; }
h2 { font-size: 2rem; margin-bottom: 12px; }
h3 { font-size: 1.375rem; margin-bottom: 10px; }
h4 { font-size: 1.125rem; margin-bottom: 8px; }

/* === CONTAINER & LAYOUT === */
.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1080px;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 32px;
  box-shadow: 0 4px 24px 0 rgba(49,113,135,0.07), 0 1.5px 0 rgba(35,78,44,0.05);
}

/* === CREATIVE ARTISTIC ACCENTS === */
.hero {
  min-height: 320px;
  background: linear-gradient(100deg, #E5E0CE 67%, #6FA3B3 110%);
  display: flex;
  align-items: center;
  margin-bottom: 0;
  border-radius: 0 0 48px 48px;
  overflow: visible;
  box-shadow: 0 10px 48px -24px #31718788;
}
.hero h1, .hero h2, .hero p { color: #234E2C; }

/* === NAVIGATION === */
header {
  background: #234E2C;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 0;
  position: relative;
  z-index: 30;
  box-shadow: 0 2px 14px 0 rgba(35,78,44,0.07);
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 10px;
  border-radius: 18px;
  transition: background 0.16s, color 0.18s;
}
header nav a:hover, header nav a.active {
  color: #234E2C;
  background: #E5E0CE;
}
header img {
  max-height: 48px;
  margin-left: 12px;
}
.cta-primary, .cta-accent {
  display: inline-block;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: 28px;
  transition: background 0.18s, color 0.12s, box-shadow 0.22s;
  border: none;
  font-size: 1.08rem;
  cursor: pointer;
  text-align: center;
  margin-left: 18px;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px 0 rgba(49,113,135,0.12);
}
.cta-primary {
  background: #317187;
  color: #fff;
}
.cta-primary:hover, .cta-primary:focus {
  background: #234E2C;
  color: #FFEDCB;
  box-shadow: 0 4px 18px -8px #234E2C55;
}
.cta-accent {
  background: #E5E0CE;
  color: #234E2C;
  border: 2px solid #317187;
}
.cta-accent:hover, .cta-accent:focus {
  background: #6FA3B3;
  color: #fff;
  border-color: #234E2C;
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 14px;
  font-size: 2rem;
  color: #E5E0CE;
  background: #317187;
  border: none;
  border-radius: 30px;
  width: 48px; height: 48px;
  z-index: 60;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px 0 rgba(49,113,135,0.12);
  transition: background 0.15s, color 0.15s, box-shadow 0.12s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #FFB74D;
  color: #234E2C;
  box-shadow: 0 3px 18px #234E2C44;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #234E2C;
  z-index: 1080;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.7,.1,.4,1);
  display: flex;
  flex-direction: column;
  padding-top: 80px;
}
.mobile-menu.open {
  transform: translateX(0%);
  box-shadow: -12px 0 60px 0 rgba(49,113,135,0.29);
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #E5E0CE;
  color: #234E2C;
  border: none;
  border-radius: 50%;
  font-size: 2.1rem;
  width: 42px; height: 42px;
  cursor: pointer;
  z-index: 1102;
  transition: background 0.13s, color 0.12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #317187;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  margin-top: 24px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.22rem;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 32px;
  transition: background 0.15s, color 0.15s;
  width: 100%;
  text-align: center;
  background: transparent;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: #E5E0CE;
  color: #234E2C;
}
@media (max-width: 1023px) {
  header nav, header .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* === MAIN SECTION & FLEX LAYOUTS === */
main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  min-height: 60vh;
  margin-top: 8px;
}
section {
  width: 100%;
  margin: 0 auto 32px auto;
  background: transparent;
  border-radius: 24px;
  position: relative;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(49,113,135,0.07);
  border-radius: 20px;
  margin-bottom: 20px;
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  min-width: 220px;
  background: #E5E0CE;
  border-radius: 24px;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 10px 0 rgba(49,113,135,0.09);
  color: #234E2C !important;
  max-width: 540px;
  transition: box-shadow 0.14s, transform 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px -4px #31718733;
  transform: translateY(-3px) scale(1.025);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F6FBF7;
  padding: 20px 18px;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 7px 0 rgba(49,113,135,0.07);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 18px 0 26px 0;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
}
.contact-info img {
  width: 28px;
  height: 28px;
  filter: hue-rotate(-20deg) brightness(0.9) contrast(1.1);
}

.star-rating {
  font-size: 1.5rem;
  color: #317187;
  letter-spacing: 0.18em;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}
blockquote {
  border-left: 5px solid #317187;
  margin: 0 0 8px 0;
  padding-left: 18px;
  font-style: italic;
  color: #234E2C;
  background: transparent;
}

/* === BUTTONS === */
button, .button {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 28px;
  padding: 11px 28px;
  font-size: 1.06rem;
  background: #317187;
  color: #fff;
  cursor: pointer;
  transition: background 0.16s, color 0.13s, box-shadow 0.17s;
}
button:focus, .button:focus, button:hover, .button:hover {
  background: #234E2C;
  color: #FFF7EC;
  box-shadow: 0 3px 12px -5px #31718755;
}

/* === FORMS, LISTS, TABLES === */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  border: 1.5px solid #b5cbc0;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 16px;
  font-size: 1rem;
  background: #F6FBF7;
  color: #234E2C;
  transition: border-color 0.12s;
}
input:focus, textarea:focus, select:focus {
  border-color: #317187;
  outline: none;
  background: #fff;
}

li {
  margin-bottom: 10px;
}
li strong {
  color: #317187;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}

/* === FOOTER === */
footer {
  background: #234E2C;
  color: #fff;
  padding: 30px 0 16px 0;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -2px 18px 0 rgba(35,78,44,0.09);
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
footer nav {
  display: flex;
  gap: 22px;
  justify-content: center;
  margin-bottom: 8px;
}
footer nav a {
  color: #E5E0CE;
  font-size: 0.97rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 5px 12px;
  border-radius: 14px;
  transition: background 0.13s, color 0.14s;
}
footer nav a:hover {
  background: #FFB14C;
  color: #234E2C;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.01rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  opacity: 0.85;
}
.footer-brand img {
  max-height: 32px;
}

/* === COOKIE CONSENT BANNER + POPUP === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 9999;
  background: #E5E0CE;
  color: #234E2C;
  box-shadow: 0 -2px 24px 0 rgba(49,113,135,0.13);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 12px 22px 12px;
  gap: 20px;
  font-size: 1.04rem;
  animation: cookieIn 0.5s ease;
}
@keyframes cookieIn {
  from { transform: translateY(50px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-banner button {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 28px;
  border: none;
  padding: 9px 26px;
  cursor: pointer;
  transition: background 0.18s;
  margin-top: 3px;
}
.cookie-banner .accept-all {
  background: #317187;
  color: #fff;
}
.cookie-banner .accept-all:hover { background: #234E2C; color:#FFEDCB; }
.cookie-banner .reject-all {
  background: #E5E0CE;
  border: 1.5px solid #317187;
  color: #317187;
}
.cookie-banner .reject-all:hover {
  background: #fff;
  color: #234E2C;
}
.cookie-banner .settings-btn {
  background: #FFB14C;
  color: #234E2C;
  border: none;
}
.cookie-banner .settings-btn:hover {
  background: #317187;
  color: #fff;
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  min-width: 300px;
  width: 92vw;
  max-width: 390px;
  transform: translate(-50%, -54%) scale(1);
  background: #fff;
  color: #234E2C;
  border-radius: 30px;
  box-shadow: 0 7px 40px -8px #31718754;
  z-index: 10010;
  padding: 40px 26px 28px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: cookiePopup 0.38s cubic-bezier(.77,0,.18,1);
}
@keyframes cookiePopup {
  from { opacity: 0; transform: translate(-50%,-44%) scale(0.8); }
  to   { opacity: 1; transform: translate(-50%,-54%) scale(1); }
}
.cookie-modal h3 {
  font-size: 1.25rem; color: #317187; margin-bottom: 9px;
}
.cookie-modal label {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #317187;
  width: 18px;
  height: 18px;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 13px; right: 20px;
  background: #E5E0CE;
  border-radius: 50%;
  color: #234E2C;
  font-size: 1.4rem;
  width: 33px; height: 33px;
  border: none;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal .cookie-modal-close:hover {
  background: #317187;
  color: #fff;
}

/* === CREATIVE & ARTISTIC ADORNMENTS === */
h1, h2, h3 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: bold;
  text-shadow:
    1px 1px 0 #E5E0CE,
    0 1.5px 4px #31718711;
  background: linear-gradient(95deg,#317187 30%,#234E2C 80%,#FFB14C 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
h1 {
  letter-spacing: 0.09em;
  font-size: 2.3rem;
  line-height: 1.16;
}
h2 {
  letter-spacing: 0.04em;
  font-size: 2rem;
}

/* === CREATIVE BULLETS AND LISTS === */
ul li {
  position: relative;
  padding-left: 26px;
}
ul li:before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 12px; height: 12px;
  background: #317187;
  border-radius: 70% 30% 68% 32% / 40% 70% 30% 60%;
  /* artistic bullet shape */
  box-shadow: 1.5px 1.5px 0 0 #FFB14C33;
  z-index: 2;
}

/* == Artistic visual accents for cards == */
.card, .feature-item, .testimonial-card {
  border: 1.5px solid #31718726;
}

/* === SPACING & GAPS === */
section, .section, .card, .testimonial-card, .feature-item {
  margin-bottom: 32px;
}
.card-container, .content-grid, .text-image-section, .testimonial-card, .feature-item {
  gap: 20px;
}

/* === RESPONSIVE LAYOUTS === */
@media (max-width: 1023px) {
  .container { padding: 0 9px; }
  .section { padding: 22px 6px; }
  .card, .feature-item, .testimonial-card { padding: 16px; }
  .content-wrapper { gap: 20px; }
}
@media (max-width: 768px) {
  .container { padding: 0 5px; }
  .content-wrapper { gap: 15px; }
  main { gap: 22px; }
  .card-container, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .card, .feature-item, .testimonial-card {
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }
  header {
    padding: 8px 0 8px 0;
  }
  .hero {
    min-height: 200px;
    border-radius: 0 0 28px 28px;
  }
  section, .section {
    padding: 18px 2px;
    margin-bottom: 32px;
  }
  footer{ border-radius: 18px 18px 0 0; padding: 20px 0 7px 0; }
}

/* === MICROINTERACTIONS === */
.cta-primary, .cta-accent, button, .button {
  transition: background 0.18s, color 0.14s, box-shadow 0.19s, transform 0.15s;
}
.cta-primary:active, .cta-accent:active, button:active {
  transform: scale(0.97);
}
nav a:focus, .mobile-nav a:focus {
  outline: 2.5px dashed #FFB14C;
  outline-offset: 2px;
}

/* === ACCESSIBILITY / CONTRAST === */
.testimonial-card, .testimonial-card * { color: #234E2C !important; background: #E5E0CE; }

/* === HIDE SCROLLBAR FOR MOBILE MENU === */
.mobile-menu {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE10+ */
}
.mobile-menu::-webkit-scrollbar {
  display: none;
}

/* === FOCUS STATES === */
button:focus, .cta-primary:focus, .cta-accent:focus {
  outline: 2.5px solid #FFB14C;
  outline-offset: 2px;
}
a:focus {
  outline: 2px dashed #317187;
  outline-offset: 2px;
}

/* === HIGHLIGHTED ELEMENTS (BORDERS, SHADOWS) === */
.card, .feature-item, .testimonial-card {
  box-shadow: 0 2px 12px 0 rgba(49,113,135,0.06);
  border-radius: 16px;
}

/* === MISC === */
::-webkit-input-placeholder { color: #234E2C99; }
::-moz-placeholder { color: #234E2C99; }
:-ms-input-placeholder { color: #234E2C99; }
::placeholder { color: #234E2C99; }

/* ===== END OF STYLE.CSS ===== */
