/* 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,
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: #F6F3EB;
  color: #1f3238;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  scroll-behavior: smooth;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #18596B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F98B22;
}
ul, ol {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 16px;
}
li { margin-bottom: 8px; }

strong, b { font-weight: bold; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #18596B;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  font-weight: 900;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem;  margin-bottom: 14px; }
h3 { font-size: 1.4rem; margin-bottom: 10px; font-weight: 700; }
h4, h5, h6 { font-size: 1rem; font-weight: 700; }
p, ul, ol { font-family: 'Open Sans', Arial, sans-serif; font-size: 1rem; margin-bottom: 16px; }
@media (max-width: 768px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.05rem; }
}

/* CONTAINERS & SECTION SPACING */
.container {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section { margin-bottom: 60px; padding: 40px 20px; }
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: none;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #FFFFFF 60%, #F98B22 100%);
  padding: 56px 0 40px 0;
  border-radius: 0 0 48px 48px;
  position: relative;
}
.hero h1 {
  color: #18596B;
  font-size: 2.7rem;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(249,139,34,0.05);
  letter-spacing: 0.01em;
}
.hero p {
  font-size: 1.15rem;
  color: #256E80;
}
.hero .cta-button {
  margin-top: 24px;
}

/* HEADER/NAVIGATION */
header {
  width: 100%;
  padding: 0;
  background: #FFFFFFee;
  position: sticky;
  top: 0;
  z-index: 1100;
  box-shadow: 0 3px 24px 0 rgba(24,89,107,0.04);
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  min-height: 76px;
}
.brand-logo img {
  height: 48px; width: auto;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 8px 8px;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #18596B;
  border-radius: 6px;
  transition: background 0.16s, color 0.16s;
}
nav a:hover, nav a:focus {
  background: #F98B22;
  color: #fff;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  background: #F98B22;
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 11px 28px;
  box-shadow: 0 4px 18px 0 rgba(249,139,34,0.09);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  margin-left: 16px;
  margin-top: 0;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
}
.cta-button:hover, .cta-button:focus {
  background: #18596B;
  color: #fff;
  box-shadow: 0 10px 32px 0 rgba(24,89,107,0.10);
}

/* MOBILE MENU BUTTONS */
.mobile-menu-toggle {
  display: none;
  background: #18596B;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  margin-left: 16px;
  cursor: pointer;
  z-index: 2002;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:hover {
  background: #F98B22;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #fffefe;
  z-index: 2000;
  box-shadow: 0 0 64px 0 rgba(24,89,107,0.12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 24px 24px 24px;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(0.6,0.3,0.25,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #18596B;
  font-size: 2.1rem;
  border: none;
  align-self: flex-end;
  margin-bottom: 24px;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:hover {
  color: #F98B22;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #18596B;
  font-weight: 700;
  padding: 12px 0;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: #F98B22;
  color: #fff;
}
@media (max-width: 1100px) {
  .container { max-width: 96vw; }
}
@media (max-width: 900px) {
  .container { max-width: 97vw; }
}
@media (max-width: 900px) {
  header .container {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  nav { gap: 10px; }
  .cta-button { font-size: 1rem; padding: 9px 18px; }
}
@media (max-width: 840px) {
  nav { display: none; }
  .cta-button { margin-left: 0; }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* GENERAL FLEXBOX SPACING */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 0 0;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 16px 0 rgba(24,89,107,0.08);
  padding: 30px 22px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.card:hover {
  box-shadow: 0 10px 32px 0 rgba(24,89,107,0.15);
  transform: translateY(-6px) scale(1.02);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; }
  .feature-grid, .card-container, .content-grid { flex-direction: column; gap: 18px; }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 15px 0 rgba(24,89,107,0.07);
  padding: 24px 18px 22px 18px;
  min-width: 215px;
  max-width: 305px;
  flex: 1 1 215px;
  transition: box-shadow 0.16s, transform 0.16s;
}
.feature-item img {
  height: 48px;
  width: 48px;
  margin-bottom: 7px;
}
.feature-item h3 {
  color: #18596B;
}
.feature-item:hover {
  box-shadow: 0 10px 36px 0 rgba(249,139,34,0.18);
  transform: translateY(-5px) scale(1.03);
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 2px 24px 0 rgba(24,89,107,0.08);
  margin-bottom: 18px;
  font-size: 1.09rem;
  color: #18596B;
  position: relative;
  min-width: 0;
  border-left: 7px solid #F98B22;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 12px 44px 0 rgba(24,89,107,0.13);
  border-left-color: #18596B;
}
.testimonial-card strong {
  color: #CC6500;
  margin-left: auto;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  text-align: right;
}
@media (max-width: 768px) {
  .testimonial-card { flex-direction: column; align-items: flex-start; padding: 16px; }
}

/* INFO BOX */
.info-box {
  background: #FFF9EA;
  color: #18596B;
  padding: 18px 18px;
  border-radius: 14px;
  font-size: 1.05rem;
  margin-top: 8px;
  box-shadow: 0 2px 16px 0 rgba(249,139,34,0.06);
  border-left: 4px solid #F98B22;
}

/* FOOTER */
footer {
  background: #18596B;
  color: #FFFFFF;
  margin-top: 48px;
  padding: 44px 0 21px 0;
  font-size: 0.98rem;
  box-shadow: 0 -2px 16px 0 rgba(24,89,107,0.07);
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 48px;
  justify-content: space-between;
}
footer .brand-logo img { height: 42px; }
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
footer nav a {
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: color 0.14s;
  font-size: 1rem;
}
footer nav a:hover, footer nav a:focus { color: #F98B22; }
.footer-contact {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #F6F3EB;
  max-width: 320px;
}
.footer-contact a {
  color: #F98B22;
  text-decoration: underline;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
  }
  .footer-contact { margin-top: 18px; }
}

/* RESPONSIVE: MOBILE */
@media (max-width: 768px) {
  .section { margin-bottom: 40px; padding: 22px 5px; }
  .container { padding: 0 6px; }
  .feature-item, .card {
    min-width: 0;
    width: 95%;
    max-width: 99vw;
    padding: 16px 11px;
  }
}

/* BUTTON & FORM STYLES */
button, .cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  outline: none;
}
button:focus-visible, .cta-button:focus-visible {
  outline: 2px solid #18596B;
  outline-offset: 2px;
}

/* Cookie Consent Banner & Modal */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 3000;
  background: #fff6ea;
  color: #18596B;
  display: flex;
  flex-direction: row;
  gap: 34px;
  align-items: center;
  box-shadow: 0 -4px 20px 0 rgba(24,89,107,0.07);
  padding: 19px 28px;
  font-size: 1rem;
  animation: cookie-slide-in 0.8s cubic-bezier(0.5,1.15,0.45,0.95);
  justify-content: center;
}
@keyframes cookie-slide-in {
  from { transform: translateY(120%); }
  to { transform: translateY(0); }
}
.cookie-banner p {
  margin: 0 0 0 0;
  flex: 1 1 59vw;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button {
  background: #18596B;
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 8px 22px;
  border-radius: 11px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s;
}
.cookie-banner .accept {
  background: #F98B22;
  color: #fff;
}
.cookie-banner .accept:hover {
  background: #18596B;
  color: #fff;
}
.cookie-banner .reject {
  background: #fff;
  color: #F98B22;
  border: 2px solid #F98B22;
}
.cookie-banner .reject:hover {
  background: #F6F3EB;
}
.cookie-banner .settings {
  background: #fff;
  color: #18596B;
  border: 2px solid #18596B;
}
.cookie-banner .settings:hover {
  background: #F6F3EB;
}
@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; gap: 14px; padding: 14px 4vw; }
  .cookie-banner p { flex-basis: 100%; }
}

.cookie-modal {
  display: none;
  position: fixed;
  z-index: 3300;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(24,89,107,0.13);
  justify-content: center;
  align-items: center;
  transition: background 0.28s;
}
.cookie-modal.open { display: flex; }
.cookie-modal-dialog {
  min-width: 320px;
  max-width: 96vw;
  padding: 38px 24px 24px 24px;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 12px 50px 0 rgba(24,89,107,0.21);
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: modal-in 0.36s cubic-bezier(0.3,1.06,0.24,0.95);
  position: relative;
}
@keyframes modal-in {
  from { transform: scale(0.88); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal-dialog h2 {
  color: #18596B;
  margin-bottom: 10px;
}
.cookie-modal-categories {
  margin: 18px 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.02rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-category input[type="checkbox"] {
  accent-color: #18596B;
  width: 22px; height: 22px;
}
.cookie-category .always-on {
  color: #999;
  font-size: 0.93rem;
}
.cookie-modal-dialog .close {
  position: absolute;
  right: 16px; top: 14px;
  font-size: 2rem;
  background: none;
  color: #F98B22;
  border: none;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-dialog .close:hover { color: #18596B; }
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 6px;
}
.cookie-modal-actions button {
  background: #18596B;
  color: #fff;
  padding: 8px 20px;
  font-size: 1rem;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: background 0.16s;
}
.cookie-modal-actions button.accept {
  background: #F98B22;
}
.cookie-modal-actions button.accept:hover {
  background: #18596B;
}
.cookie-modal-actions button.reject {
  background: #fff;
  color: #F98B22;
  border: 2px solid #F98B22;
}
.cookie-modal-actions button.reject:hover {
  background: #F6F3EB;
}
@media (max-width: 470px) {
  .cookie-modal-dialog { min-width: 165px; padding: 18px 4vw 13px 4vw; }
}

/* DECORATIVE - Artistic Touches */
.hero:before {
  content: '';
  position: absolute;
  top: -64px;
  right: -44px;
  width: 180px; height: 180px;
  background: rgba(249,139,34,0.12);
  border-radius: 60% 40% 51% 49% / 58% 51% 49% 42%;
  z-index: 0;
  filter: blur(5px);
}
.hero:after {
  content: '';
  position: absolute;
  left: -58px;
  bottom: -28px;
  width: 150px; height: 110px;
  background: rgba(24,89,107,0.10);
  border-radius: 42% 58% 52% 48% / 71% 56% 44% 29%;
  z-index: 0;
  filter: blur(9px);
}

@media (max-width: 620px) {
  .hero:before,
  .hero:after {
    display: none;
  }
}

/* Artistic font accent for major headings */
h1, h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.12;
}

/* Misc Styles for Feature Cards & Artistic Visuals */
.feature-item {
  border-left: 7px solid #F98B22;
}
.feature-item:nth-child(2n) {
  border-left: 7px solid #18596B;
  background: #FEF8F1;
}
.feature-item:nth-child(3n) {
  border-left: 7px solid #CC6500;
}


/* ICON/IMG Styles */
.feature-item img, p img, .footer-contact img {
  filter: drop-shadow(0 2px 7px rgba(24,89,107,0.03));
}

/* Decorative horizontal lines */
h2:after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 7px;
  background: linear-gradient(90deg, #F98B22 55%, #18596B 100%);
  border-radius: 3px;
}

/* Utilities */
.mt-32 { margin-top: 32px; }
.mb-24 { margin-bottom: 24px; }
.m-0 { margin: 0 !important; }
.p-0 { padding: 0 !important; }

/* Z-INDEX LAYERS */
header, .mobile-menu, .cookie-banner, .cookie-modal { z-index: 9999; }

/* FOCUS STATES */
a:focus, button:focus {
  outline: 2px solid #18596B;
  outline-offset: 2px;
}

/* Spacing for all section wrappers */
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
  position: relative;
}
section:last-child { margin-bottom: 0; }
.content-wrapper { margin: 0 auto; max-width: 950px; }

/* SPACING 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; }

/* Spacing for cards/content on smaller screens */
@media (max-width: 560px) {
  .feature-item, .card, .testimonial-card {
    padding: 11px 5px;
  }
  h2:after {
    width: 38px;
  }
}
