/* RESET & BASE TYPOGRAPHY */
/* Reset */
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 {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F5F5F5;
  color: #2A2A2A;
  line-height: 1.7;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: #156064;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FF9000;
}

/* BRANDED FONTS */
h1, h2, h3, h4, h5, h6, .brand {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: bold;
  color: #156064;
  letter-spacing: 0.03em;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.4rem; margin-bottom: 12px;}
.subline { color: #b26400; font-size: 1.25rem; font-family: 'Montserrat', sans-serif; margin-bottom: 18px;}

p, ul, li, table, label, span {
  font-size: 1rem;
}
strong { color: #156064; }

/* CONTAINER & SPACING */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
/* SECTION SPACING - MANDATORY */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(21,96,100,0.07), 0 1.5px 10px rgba(255,144,0,0.04);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}
.content-wrapper.center {
  align-items: center;
  text-align: center;
}

.text-section {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(21,96,100,0.04);
}
ul {
  padding-left: 22px;
  margin-bottom: 12px;
}
ul li {
  margin-bottom: 7px;
}

/* CARD & FLEX LAYOUTS - MANDATORY */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(21,96,100,0.07);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  min-width: 230px;
  flex: 1 1 300px;
}

.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) {
  .container { padding: 0 8px; }
  .content-wrapper, .content-wrapper.center { align-items: center; text-align: center; }
  .text-section { padding: 18px 6px; }
  .card-container, .content-grid, .text-image-section { flex-direction: column !important; gap: 20px; }
}


/* HEADER & NAVIGATION */
header {
  background: #fff;
  border-bottom: 3px solid #156064;
  box-shadow: 0 2px 10px rgba(21, 96, 100, 0.06);
  position: sticky;
  top: 0;
  z-index: 1001;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px;
  gap: 16px;
}
.logo img { height: 44px; max-width: 150px; }
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 600;
  color: #156064;
  position: relative;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 1.07rem;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #fff;
  background: #FF9000;
}
.cta-button {
  display: inline-block;
  background: #156064;
  color: #fff;
  border-radius: 28px;
  padding: 12px 30px;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(21,96,100,0.10);
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.1s;
  margin-left: 18px;
  outline: none;
}
.cta-button.primary { background: #156064; color: #fff; }
.cta-button.accent { background: #FF9000; color: #fff; }
.cta-button:hover, .cta-button:focus {
  background: #b26400;
  color: #fff;
  box-shadow: 0 4px 24px rgba(21,96,100,0.13);
  transform: translateY(-2px) scale(1.04);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #156064;
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 12px;
  margin-left: 12px;
  transition: box-shadow 0.15s, background 0.18s;
  z-index: 1201;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #FF9000;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(245,245,245,0.98);
  box-shadow: 0 6px 32px rgba(21,96,100,0.22);
  z-index: 1200;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.62,.04,.32,1.28);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  opacity: 1;
}
.mobile-menu.open {
  transform: translateX(0vw);
  opacity: 1;
}
.mobile-menu-close {
  background: #156064;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  margin: 22px 18px 10px 16px;
  align-self: flex-end;
  border-radius: 10px;
  cursor: pointer;
  padding: 2px 14px;
  transition: background 0.22s, color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #b26400;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 10px 32px 20px 32px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.15rem;
  font-family: 'Montserrat', sans-serif;
  color: #156064;
  background: #fff;
  border-radius: 12px;
  padding: 16px 12px;
  margin: 0;
  text-align: left;
  transition: background 0.13s, color 0.13s;
  box-shadow: 0 2px 8px rgba(21,96,100,0.10);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FF9000;
  color: #fff;
}

@media (max-width: 980px) {
  .main-nav, .cta-button.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
/* Hide mobile menu on desktop */
@media (min-width: 981px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* FOOTER */
footer {
  background: #156064;
  color: #fff;
  padding: 36px 0 12px 0;
  margin-top: 50px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  opacity: 0.92;
  transition: opacity 0.13s, color 0.2s;
  padding: 4px 10px;
  border-radius: 4px;
}
.footer-nav a:hover, .footer-nav a:focus {
  opacity: 1;
  color: #FF9000;
}
.brand-info {
  text-align: center;
  font-size: 0.99rem;
  color: #F5F5F5;
  margin-top: 4px;
}
.brand-info a { color: #fff; text-decoration: underline; }
.brand-info a:hover, .brand-info a:focus { color: #FF9000; }

/* CTA BLOCK */
.cta-block {
  background: #FF9000;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(255,144,0,0.11);
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  color: #fff;
}
.cta-block h2 { color: #fff; }

/* TESTIMONIAL CARD - MANDATORY CONTRAST & SPACING */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fffbe6;
  color: #2A2A2A;
  border-left: 6px solid #FF9000;
  border-radius: 14px;
  margin-bottom: 20px;
  padding: 20px 32px 18px 24px;
  box-shadow: 0 2px 12px rgba(21,96,100,0.06);
  gap: 10px;
  font-size: 1.05rem;
  width: 100%;
}
.testimonial-card span { font-size: 1em; color: #156064; margin-top: 6px; }
.testimonial-card strong { color: #b26400; }
@media (max-width: 600px) {
  .testimonial-card {
    padding: 13px 10px 12px 13px;
    font-size: 0.99rem;
  }
}

/* FAQ ACCORDION */
.faq-accordion {
  margin-bottom: 36px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(21,96,100,.07);
  padding: 28px 20px;
}
.faq-accordion h2 {
  color: #156064;
  font-size: 2rem;
  margin-bottom: 16px;
}
.faq-accordion h3 {
  color: #FF9000;
  cursor: pointer;
  margin-top: 15px;
  margin-bottom: 4px;
  font-size: 1.15rem;
  position: relative;
}
.faq-accordion h3::after {
  content: '+';
  float: right;
  font-size: 1.15rem;
  color: #b26400;
  margin-left: 10px;
}
.faq-accordion h3.open::after { content: '–'; }
.faq-accordion p { margin-bottom: 8px; }

/* TABLES */
table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 11px;
  overflow: hidden;
  margin-bottom: 32px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(21,96,100,.05);
}
thead { background: #156064; color: #fff; }
th, td { padding: 11px 10px; text-align: left; }
th { font-family: 'Montserrat', sans-serif; font-weight: 600; }
tbody tr:nth-child(even) { background: #F5F5F5; }
tbody tr:hover { background: #FFFAEB; }

/* CONTACT DETAILS */
.contact-details {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #156064;
  margin-bottom: 7px;
  font-size: 1.07rem;
}
.contact-details li img { width: 28px; height: 28px; }
.info-text {
  background: #F5F5F5;
  border-left: 4px solid #FF9000;
  border-radius: 7px;
  color: #156064;
  padding: 13px 14px;
  font-size: 1rem;
  margin-top: 8px;
}

/* CARD, FEATURE, ADDON SERVICES */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}
.addon-services {
  background: #fffbe6;
  padding: 18px 16px;
  border-radius: 7px;
  border-left: 4px solid #b26400;
  margin-bottom: 16px;
}

/* BUTTONS & INTERACTIONS */
button, .cta-button {
  cursor: pointer;
  border: none;
  font-family: 'Montserrat', sans-serif;
  transition: background 0.18s, color 0.18s, box-shadow 0.15s, transform 0.09s;
}
button:active, .cta-button:active { transform: scale(.99); }


/* ARTISTIC CREATIVE STYLE - COLORS & UNIQUE VISUALS */
body {
  background: linear-gradient(110deg, #FFFAEB 0%, #F5F5F5 80%);
}
.section, .text-section, .card {
  border-radius: 22px 36px 16px 18px/20px 24px 28px 18px;
  /* Subtle abstract shapes for creative/artistic feel */
  border: 2.5px solid #FF9000;
  position: relative;
}
.section:after, .text-section:after {
  content: "";
  position: absolute;
  top: -12px;
  right: -18px;
  width: 38px;
  height: 38px;
  background: #b26400;
  border-radius: 52% 46% 44% 56%/48% 49% 51% 52%;
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
}
.card:before {
  content: "";
  position: absolute;
  left: -10px;
  bottom: -14px;
  width: 34px;
  height: 30px;
  background: #156064;
  border-radius: 51% 49% 36% 64%/58% 52% 48% 42%;
  opacity: 0.13;
  pointer-events: none;
  z-index: 0;
}

/* TYPOGRAPHY SCALE RESPONSIVE */
@media (max-width: 430px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.09rem; }
  h3 { font-size: 0.99rem; }
  .subline, p, ul li, .footer-nav a, .brand-info {
    font-size: 0.98rem;
  }
}

/* MICRO-ANIMATIONS/MICRO-INTERACTIONS */
.cta-button, .main-nav a, .mobile-nav a {
  transition: box-shadow 0.25s, background 0.21s, color 0.21s, transform 0.11s;
}
.cta-button:hover, .main-nav a:hover, .mobile-nav a:hover {
  box-shadow: 0 6px 24px rgba(255,144,0,0.14);
  transform: translateY(-2px) scale(1.01);
}
.card {
  transition: box-shadow 0.18s, transform 0.17s;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(21,96,100,.14);
  transform: translateY(-5px) scale(1.02);
}
.testimonial-card {
  transition: box-shadow 0.15s, background 0.13s;
}
.testimonial-card:hover {
  background: #fff9df;
  box-shadow: 0 6px 16px rgba(255, 144, 0, 0.12);
}

/* COOKIE CONSENT BANNER & MODAL */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffbe6;
  color: #2A2A2A;
  box-shadow: 0 -2px 16px rgba(21,96,100,0.13);
  padding: 24px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  z-index: 2000;
  gap: 18px;
  font-size: 1.01rem;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: transform 0.30s cubic-bezier(.62,.04,.32,1.28), opacity 0.19s;
  border-top: 3px solid #b26400;
}
#cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-message {
  flex: 1 1 340px;
  margin-right: 10px;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-btn {
  border-radius: 22px;
  background: #156064;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  padding: 8px 22px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(21,96,100,0.06);
  transition: background 0.18s, color 0.18s;
}
.cookie-btn.accept { background: #156064; }
.cookie-btn.reject { background: #b26400; }
.cookie-btn.settings {
  background: #FF9000;
  color: #fff;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: #FF9000;
}
@media (max-width: 600px) {
  #cookie-banner { flex-direction: column; gap: 13px; font-size: .98rem; }
  .cookie-banner-actions { width: 100%; flex-direction: column; gap: 10px; }
}

#cookie-modal {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  width: 96vw;
  max-width: 390px;
  background: #fff;
  border: 3px solid #b26400;
  border-radius: 24px 32px 18px 22px/22px 28px 22px 28px;
  box-shadow: 0 12px 36px rgba(21,96,100,0.18), 0 1.5px 10px rgba(255,144,0,0.09);
  padding: 32px 25px 22px 28px;
  z-index: 3200;
  transform: translate(-50%, -50%) scale(1.09);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s, transform 0.28s;
  font-family: 'Open Sans', Arial, sans-serif;
}
#cookie-modal.show {
  display: flex;
  flex-direction: column;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
#cookie-modal h3 {
  color: #156064;
  font-family: 'Montserrat',sans-serif;
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.cookie-categories {
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.cookie-category label {
  font-size: 1.04rem;
  color: #156064;
  font-family: 'Montserrat',sans-serif;
}
.cookie-category input[type="checkbox"] {
  width: 23px;
  height: 23px;
  accent-color: #FF9000;
}
.cookie-category .always-on {
  color: #b26400;
  margin-left: 4px;
  font-size: .98em;
  font-style: italic;
}
#cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 11px;
  flex-direction: row;
  justify-content: flex-end;
}
#cookie-modal .cta-button {
  padding: 7px 15px;
  font-size: 1rem;
  margin-left: 8px;
  background: #FF9000;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #156064;
  color: #fff;
  border-radius: 50%;
  width: 33px;
  height: 33px;
  text-align: center;
  font-size: 1.7rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(21,96,100,0.09);
  transition: background 0.15s;
}
.cookie-modal-close:hover {
  background: #FF9000;
}

/* ARTISTIC FLAIR: ACCENT DOTS FOR H1 & SECTION */
h1::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  background: #FF9000;
  width: 22px;
  height: 22px;
  margin-right: 13px;
  border-radius: 42% 58% 38% 62% / 50% 60% 40% 50%;
  opacity: 0.39;
  position: relative;
  top: -3px;
}
@media (max-width:450px) {
  h1::before{ width: 11px; height: 11px; margin-right: 7px; }
}
.section {
  position: relative;
  overflow: visible;
}
.section .cta-button {
  margin-top: 20px;
}
.section:not(:last-child) {
  margin-bottom: 60px;
}

/* UNIQUE CREATIVE VISUAL HIGHLIGHTS */
h2, .section h2 {
  position: relative;
  z-index: 2;
}
h2::after {
  content: '';
  display: inline-block;
  background: #156064;
  width: 30px; height: 6px;
  border-radius: 38px 9px 14px 38px;
  position: absolute;
  left: 0; bottom: -9px;
  opacity: 0.18;
  margin-left: 6px;
}

/* SCROLLBAR STYLE -- ARTISTIC */
::-webkit-scrollbar {
  width: 11px;
  background: #F5F5F5;
}
::-webkit-scrollbar-thumb {
  background: #FF9000;
  border-radius: 7px;
  border: 2px solid #fff;
}
::-webkit-scrollbar-thumb:hover {
  background: #b26400;
}

/* Accessibility border for keyboard navigation */
a:focus, button:focus, .cta-button:focus, input:focus, textarea:focus {
  outline: 3px solid #FF9000;
  outline-offset: 1px;
  z-index: 10;
}

/* OVERLAP & Z-INDEX CONTROL */
header, .mobile-menu, #cookie-banner, #cookie-modal { z-index: 1200; }

/* GENERAL RESPONSIVENESS */
@media (max-width: 760px) {
  .footer-nav { gap: 10px; }
  .cta-block { padding: 18px 7px; }
  body { font-size: 0.99rem; }
}

/* ------ END OF STYLE ------ */