/* ===================================================================
   CSS RESET & NORMALIZATION
=================================================================== */
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 {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #F7FAFC;
  color: #203040;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  background: transparent;
  color: #004D40;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #193B36;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}
/* Font Faces */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* ===================================================================
   BRAND VARIABLES & THEME COLORS
=================================================================== */
:root {
  --primary: #004D40;
  --primary-dark: #00342c;
  --secondary: #E0F2F1;
  --accent: #FFD600;
  --white: #ffffff;
  --gray-100: #F1F4F6;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-800: #25313e;
  --text: #1d2939;
  --text-light: #425466;
  --success: #23967f;
  --danger: #d84315;
  --shadow: 0 2px 16px rgba(36,54,78,0.08), 0 1.5px 6px rgba(36,54,78,0.05);
  --radius: 12px;
  --transition: 0.22s cubic-bezier(.29,.98,.69,.98);
}

/* ===================================================================
   LAYOUT CONTAINERS & STRUCTURE
=================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--primary);
}
h1 {
  font-size: 2.5rem;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.25rem;
}
h4 {
  font-size: 1.1rem;
}
p, li {
  color: var(--text-light);
  margin-bottom: 0.5em;
  font-size: 1rem;
}
.tagline {
  font-size: 1.15rem;
  color: var(--primary);
  font-weight: 500;
}
strong, b {
  font-weight: 700;
  color: var(--primary-dark);
}

/* ===================================================================
   HEADER & NAVIGATION
=================================================================== */
header {
  width: 100%;
  background: var(--secondary);
  box-shadow: 0 2px 10px rgba(36,54,78,.05);
  padding: 0;
  z-index: 30;
}
header .container {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  position: relative;
}
header a img {
  height: 46px;
  margin-right: 32px;
}
nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-right: auto;
}
nav a {
  padding: 8px 0 8px 0;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 6px;
  transition: background 0.15s, color 0.18s;
}
nav a:hover,
nav a:focus {
  background: var(--accent);
  color: var(--primary-dark);
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white) !important;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 11px 36px;
  border-radius: 99px;
  box-shadow: 0 2px 12px rgba(0,77,64,0.08);
  margin-left: 24px;
  transition: background var(--transition), transform 0.12s;
  cursor: pointer;
  border: none;
  outline: none;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary-dark);
  color: var(--accent) !important;
  transform: translateY(-2px) scale(1.03);
}

.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1.8rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,77,64,0.08);
  transition: background 0.18s, color 0.18s;
  z-index: 102;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--accent);
  color: var(--primary);
}

/* ===================================================================
   MOBILE MENU
=================================================================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(28,41,49,0.98);
  z-index: 120;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .42s cubic-bezier(.4,0,.2,1), opacity .17s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  color: var(--white);
  border: none;
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 24px 28px 4px 0;
  cursor: pointer;
  transition: color 0.14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  padding: 32px 32px 0 32px;
}
.mobile-nav a {
  color: var(--white);
  font-size: 1.27rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 10px 0;
  border-radius: 7px;
  transition: background 0.17s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--primary);
  background: var(--accent);
}

/* ===================================================================
   HERO SECTION & BANNERS
=================================================================== */
.hero {
  background: var(--secondary);
  padding: 60px 0 48px 0;
  margin-bottom: 38px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  margin-bottom: 16px;
  font-size: 2.8rem;
  color: var(--primary-dark);
}
.hero .tagline {
  max-width: 540px;
  margin-bottom: 30px;
}
.hero .cta-btn {
  margin-top: 12px;
}
.cta-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  padding: 32px 20px;
  border-radius: var(--radius);
  gap: 22px;
  box-shadow: 0 3px 14px rgba(0,77,64,0.08);
  margin-bottom: 18px;
  margin-top: 8px;
}
.cta-banner p {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0.3em;
}
/*.cta-banner .cta-btn styling is covered above */

/* ===================================================================
   FLEX LAYOUTS & CARDS
=================================================================== */
.card-container, .content-grid, .service-list, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card, .service-card, .service-teaser {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  margin-bottom: 20px;
  padding: 24px 22px 18px 22px;
  min-width: 230px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .service-card:hover, .service-teaser:hover {
  box-shadow: 0 4px 22px rgba(0,77,64,0.16), var(--shadow);
  transform: translateY(-4px) scale(1.02);
}
.service-card .service-price, .service-teaser .service-price {
  margin-top: 6px;
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* Feature Lists & Grids */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid li, .feature-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--gray-100);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,77,64,0.06);
  padding: 22px 18px;
  min-width: 200px;
  flex: 1 1 220px;
  margin-bottom: 20px;
}
.feature-grid li img, .feature-list li img {
  height: 38px;
  margin-bottom: 8px;
}
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 8px;
}

/* Card Group/Content Grids */
.content-grid {
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 0;
}

/* ===================================================================
   TESTIMONIALS
=================================================================== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  max-width: 390px;
  min-width: 250px;
  flex: 1 1 260px;
  border-left: 5px solid var(--primary);
  transition: box-shadow 0.16s, border-color 0.16s;
  margin-bottom: 20px;
  cursor: default;
}
.testimonial-card:hover {
  box-shadow: 0 4px 18px rgba(0,77,64,0.15), var(--shadow);
  border-color: var(--accent);
}
.testimonial-card p {
  font-size: 1.01rem;
  color: var(--text);
  font-style: italic;
}
.testimonial-card span {
  font-size: 0.93rem;
  color: var(--primary);
}
.testimonial-card strong {
  color: var(--primary-dark);
}

/* ===================================================================
   TABLES & PRICING TABLE
=================================================================== */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.pricing-table th, .pricing-table td {
  padding: 18px 16px;
  text-align: left;
  font-size: 1rem;
}
.pricing-table th {
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
}
.pricing-table tr:nth-child(even) td {
  background: var(--gray-100);
}
.pricing-table td {
  color: var(--text-light);
  border-bottom: 1px solid var(--gray-200);
}

/* Note/Info */
.note, .info {
  margin-top: 10px;
  padding: 18px 18px;
  background: var(--gray-100);
  border-radius: var(--radius);
  color: var(--primary);
  font-size: 1rem;
  box-shadow: 0 1px 4px rgba(0,77,64,0.04);
}

/* Misc Lists & FAQ */
.faq-list li {
  margin-bottom: 20px;
  background: var(--gray-100);
  padding: 18px 18px;
  border-radius: var(--radius);
  box-shadow: 0 1px 5px rgba(36,54,78,0.04);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-list strong {
  color: var(--primary-dark);
  font-weight: bold;
}

.tip-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Text Sections with Image */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-details ul {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.map-location {
  margin-top: 18px;
}

/* ===================================================================
   FOOTER
=================================================================== */
footer {
  background: var(--secondary);
  padding: 38px 0 24px 0;
  border-top: 1.5px solid var(--gray-200);
  margin-top: 44px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 8px;
  justify-content: center;
}
.footer-nav a {
  font-size: 0.97rem;
  color: var(--primary);
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  transition: background 0.1s, color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--accent);
  color: var(--primary-dark);
}
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.98rem;
  color: var(--text-light);
  gap: 3px;
  text-align: center;
}

/* ===================================================================
   COOKIE CONSENT BANNER & MODAL
=================================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--gray-800);
  color: var(--white);
  padding: 22px 16px 22px 16px;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -2px 16px rgba(31,41,53,0.19);
  z-index: 501;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s, transform 0.4s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
}
.cookie-banner .cookie-text {
  flex: 1 1 280px;
  font-size: 1.01rem;
  color: var(--gray-100);
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
}
.cookie-banner button {
  border-radius: 8px;
  padding: 8px 24px;
  font-size: 1rem;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background .16s, color .16s;
  margin-right: 2px;
  margin-bottom: 3px;
}
.cookie-banner .accept-btn {
  background: var(--success);
  color: var(--white);
}
.cookie-banner .accept-btn:hover {
  background: #197261;
}
.cookie-banner .reject-btn {
  background: var(--danger);
  color: var(--white);
}
.cookie-banner .reject-btn:hover {
  background: #ab2d06;
}
.cookie-banner .settings-btn {
  background: var(--accent);
  color: var(--primary);
}
.cookie-banner .settings-btn:hover {
  background: var(--primary);
  color: var(--accent);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 502;
  background: rgba(44, 62, 80, 0.64);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: var(--white);
  color: var(--text);
  padding: 32px 26px;
  border-radius: 18px;
  box-shadow: 0 4px 38px rgba(44,62,80,0.14), var(--shadow);
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  position: relative;
}
.cookie-modal h3 {
  margin-bottom: 7px;
  color: var(--primary);
  font-size: 1.17rem;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-category label {
  font-size: 1.03rem;
}
.cookie-category input[type="checkbox"]:not(:disabled) {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}
.cookie-category input[type="checkbox"]:disabled {
  accent-color: #ADADAD;
  cursor: not-allowed;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: var(--gray-800);
  font-size: 1.6rem;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--danger);
}
.cookie-modal .cookie-modal-actions {
  margin-top: 12px;
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}
.cookie-modal .accept-btn, .cookie-modal .reject-btn {
  min-width: 120px;
}

/* ===================================================================
   LISTS, PARAGRAPHS & TYPOGRAPHY
=================================================================== */
ul, ol {
  margin-left: 19px;
  margin-bottom: 1em;
  padding-left: 7px;
}
li {
  margin-bottom: 9px;
  line-height: 1.6;
}
li:last-child {
  margin-bottom: 0;
}

ol {
  list-style-type: decimal;
}
ul {
  list-style-type: disc;
}
ul li,
ol li {
  padding-left: 2px;
}

/* ===================================================================
   SPACING & FLEXBOX PATTERNS (MANDATORY CLASS NAMES)
=================================================================== */
.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; }

/* ===================================================================
   ANIMATIONS & MICRO-INTERACTIONS
=================================================================== */
.cta-btn, .cookie-banner button, .footer-nav a, nav a, .service-card, .testimonial-card, .feature-grid li {
  transition: background 0.22s, color 0.17s, transform 0.18s, box-shadow 0.18s, border-color 0.17s;
}

@media (hover: hover) and (pointer: fine) {
  .feature-grid li:hover, .service-card:hover {
    box-shadow: 0 7px 30px rgba(0,77,64,0.10), var(--shadow);
    transform: translateY(-3px) scale(1.025);
  }
}

/* Focus ring for accessibility */
*:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* ===================================================================
   RESPONSIVE DESIGN (MOBILE-FIRST)
=================================================================== */
@media (max-width: 1100px) {
  .container {
    max-width: 970px;
  }
  .card, .service-card, .feature-grid li, .testimonial-card {
    min-width: 200px;
    flex: 1 1 180px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 720px;
  }
  .feature-grid, .service-grid, .testimonial-slider, .content-grid, .feature-list {
    gap: 16px;
  }
  .card, .service-card, .feature-grid li, .testimonial-card {
    min-width: 140px;
    flex: 1 1 120px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-wrap: wrap;
    padding-top: 10px;
    min-height: 56px;
  }
  nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero {
    padding: 38px 0 30px 0;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .content-wrapper {
    gap: 14px;
  }
  .feature-grid, .service-grid, .card-container,
  .testimonial-slider, .feature-list, .content-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .card, .service-card, .feature-grid li, .testimonial-card {
    min-width: 0;
    width: 100%;
    flex: 1 1 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .cta-banner {
    padding: 18px 8px;
  }
  .section { padding: 28px 7px; margin-bottom: 32px; }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 7px 16px 7px;
    gap: 9px;
  }
  .footer-nav {
    gap: 12px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.11rem; }
  .section { padding: 17px 4px; }
  .cookie-modal { padding: 16px 4px; }
}

/* ===================================================================
   PRINT STYLES
=================================================================== */
@media print {
  header, .mobile-menu, .cta-banner, .testimonial-slider, .cookie-banner, .cookie-modal-overlay, footer {
    display: none !important;
  }
  body { background: #fff; color: #000; }
  .section { box-shadow: none; background: #fff; }
}

/* ===================================================================
   UTILITY CLASSES
=================================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 16px !important; }
.mt-2 { margin-top: 16px !important; }
.pt-2 { padding-top: 16px !important; }
.pb-2 { padding-bottom: 16px !important; }

/* ===================================================================
   FORM ELEMENTS (if needed for future contact forms)
=================================================================== */
input, textarea, select {
  border: 1.5px solid var(--gray-200);
  border-radius: 7px;
  padding: 11px 12px;
  font-size: 1rem;
  background: var(--white);
  color: var(--text);
  margin-bottom: 14px;
  width: 100%;
  min-width: 0;
  transition: border-color 0.16s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
}
button:disabled {
  opacity: 0.68;
  cursor: not-allowed;
}
