/* ----------------------
   CSS RESET & BASELINE
----------------------- */
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, 
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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #f6faf9;
  min-height: 100vh;
  color: #214057;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #11506c;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #4cbfd0;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}

/* Typography */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.375rem; /* 38px */
  line-height: 1.18;
  letter-spacing: 0.01em;
  color: #11506c;
  margin-bottom: 20px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.75rem; /* 28px */
  line-height: 1.25;
  color: #1e4d5c;
  margin-bottom: 18px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.25rem; /* 20px */
  color: #276a86;
  margin-bottom: 12px;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #295e63;
}
strong, b {
  font-weight: 700;
}
.em {
  font-style: italic;
}
p {
  margin-bottom: 18px;
  color: #295e63;
  font-size: 1rem;
}

/* Button Styles */
.btn-primary,
.btn-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 28px;
  padding: 13px 34px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 12px 0 rgba(59, 107, 85, 0.09);
  outline: none;
  text-align: center;
}
.btn-primary {
  background: #aaddec;
  color: #11506c;
  box-shadow: 0 2px 16px 0 rgba(22,110,100,0.07);
  border: 2px solid #50bad1;
}
.btn-primary:hover, .btn-primary:focus {
  background: #4cbfd0;
  color: #fff;
  box-shadow: 0 6px 24px 0 rgba(22,110,100,0.14);
}
.btn-secondary {
  background: #e6ecfa;
  color: #214057;
  border: 2px solid #d1b9f1;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #f7f3fa;
  color: #9064d6;
  border-color: #ceb3f0;
}

/* Containers & Layouts */
.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 2px 32px 0 rgba(78,112,100,0.07);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #f4f8fb;
  border-radius: 22px;
  box-shadow: 0 2px 14px 0 rgba(90,126,120,0.06);
  padding: 28px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  min-width: 275px;
  flex: 1 1 284px;
  transition: box-shadow .18s, transform .18s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 4px 32px 0 rgba(39,104,108,0.15);
  transform: translateY(-4px);
}

.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;
  margin-bottom: 20px;
  background: #fff6f1;
  border-radius: 26px;
  box-shadow: 0 2px 16px 0 rgba(216,153,94,0.072);
  border: 1px solid #feefd9;
  font-size: 1.07rem;
  color: #353029;
  flex: 1 1 360px;
  min-width: 280px;
  max-width: 580px;
  transition: box-shadow .18s, border .18s;
}
.testimonial-card span {
  font-style: italic;
  color: #977338;
  font-size: 1.02rem;
  font-family: 'Montserrat',Arial,sans-serif;
  margin-left: 10px;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 4px 32px 0 rgba(216,153,94,0.11);
  border-color: #ffd36b;
}

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

/* Brand Pastel Aesthetic */
:root {
  --color-primary: #11506c;
  --color-secondary: #e4f3ed;
  --color-accent: #feb637;
  --color-bg: #f6faf9;
  --color-pastel-blue: #aaddec;
  --color-pastel-green: #e4f3ed;
  --color-pastel-lavender: #e6ecfa;
  --color-pastel-yellow: #feefd9;
  --color-pastel-orange: #fff6f1;
  --color-pastel-rose: #faeaf7;
  --color-footer-bg: #f6f9f7;
  --color-dark: #214057;
  --color-light: #fff;
}

/* Header & Navigation */
header {
  background: linear-gradient(180deg, #e4f3ed 60%, #fafbfc 100%);
  padding-top: 0;
  box-shadow: 0 3px 18px 0 rgba(111, 181, 204, 0.10);
}
.main-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 18px 0;
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
}
.main-nav li {
  margin-bottom: 0;
}
.main-nav li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #11506c;
  border-radius: 14px;
  padding: 8px 18px;
  transition: background .16s, color .13s;
}
.main-nav li a:hover, .main-nav li a.active {
  background: #aaddec;
  color: #11506c;
}
.main-nav img {
  height: 36px;
}

/* Mobile Hamburger & Menu */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 18px;
  z-index: 1011;
  background: var(--color-pastel-blue);
  color: var(--color-primary);
  padding: 10px 15px;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  box-shadow: 0 2px 14px 0 rgba(81, 140, 112, 0.11);
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--color-pastel-green);
  color: var(--color-accent);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 1020;
  background: linear-gradient(135deg,#e6ecfa 85%, #e4f3ed 100%);
  transform: translateX(-100vw);
  transition: transform .32s cubic-bezier(0.68, -0.55, 0.27, 1.45);
  box-shadow: 0 8px 60px 0 rgba(111,181,204, 0.16);
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform .32s cubic-bezier(0.68, -0.55, 0.27, 1.45);
}
.mobile-menu-close {
  margin-top: 16px;
  margin-left: auto;
  margin-right: 30px;
  padding: 8px 16px;
  font-size: 1.6rem;
  background: none;
  color: #11506c;
  border: none;
  border-radius: 50%;
  transition: background .2s;
  cursor: pointer;
  z-index: 9999;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #feb637;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 40px 32px;
  width: 100%;
  margin-top: 26px;
}
.mobile-nav a {
  font-family: 'Montserrat',Arial,sans-serif;
  color: #11506c;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 13px;
  padding: 12px 10px;
  transition: background .16s, color .16s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #aaddec;
  color: #35abd6;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  background: linear-gradient(105deg, #e6ecfa 80%, #e4f3ed 100%);
  padding: 44px 0 32px 0;
  margin-bottom: 0;
  border-radius: 0 0 44px 44px;
  box-shadow: 0 2px 24px 0 rgba(111,181,204,0.08);
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.375rem;
  color: #11506c;
}
.hero p {
  max-width: 600px;
  color: #41798a;
  font-size: 1.13rem;
  margin-bottom: 30px;
}

/* Features Section & Features Lists */
.features ul,
.features .content-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
}
.features li {
  background: #f7fbfa;
  color: #21515c;
  font-size: 1.04rem;
  padding: 15px 22px 15px 22px;
  border-radius: 16px;
  margin-bottom: 0;
  box-shadow: 0 1px 8px 0 rgba(173,222,236,0.09);
  display: flex;
  align-items: center;
  gap: 13px;
}
.features li img {
  max-width: 32px;
  max-height: 32px;
  margin-right: 10px;
  flex-shrink: 0;
}

/* Services & Service List/Items */
.services ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}
.services li {
  background: #e4f3ed;
  border-radius: 13px;
  padding: 16px 22px;
  font-size: 1.06rem;
  color: #186876;
}
span.price {
  background: #faeaf7;
  color: #ab7bb7;
  border-radius: 10px;
  font-size: 0.96rem;
  padding: 3px 10px;
  margin-left: 10px;
}
.services-list .service-item {
  background: #f0f8fa;
  margin-bottom: 20px;
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 2px 14px 0 rgba(96, 178, 171, 0.06);
  transition: box-shadow 0.20s, transform 0.2s;
}
.services-list .service-item:hover, .services-list .service-item:focus-within {
  background: #e7effa;
  box-shadow: 0 4px 28px 0 rgba(34,111,139,0.11);
  transform: translateY(-3px);
}
.services-list h3 {
  color: #285783;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.awards {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  padding-left: 8px;
  background: #e7f7f7;
  border-radius: 14px;
  padding: 12px 18px;
}
.awards img {
  width: 36px;
  height: 36px;
  margin-right: 6px;
}
.awards span {
  font-size: 1.05rem;
  color: #99702b;
  font-style: italic;
}

/* About Section */
.about ul {
  margin: 20px 0 22px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about li {
  font-size: 1.1rem;
  color: #509898;
  margin-left: 12px;
}

/* Contact Section */
.contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 0 0;
  font-size: 1.04rem;
  color: #185357;
}
.contact ul a {
  color: #285783;
  text-decoration: underline;
}

/* Footer */
footer {
  background: var(--color-footer-bg);
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -2px 16px 0 rgba(111,181,204,0.09);
  padding: 36px 0 12px 0;
  margin-top: 80px;
  font-size: 1rem;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand img {
  height: 52px;
}
.footer-contact h3 {
  font-size: 1.12rem;
  color: #214057;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
}
.footer-contact ul {
  font-size: .97rem;
  color: #508e93;
  margin-top: 3px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: #508e93;
  font-size: .96rem;
  transition: color 0.15s;
  border-radius: 9px;
  padding: 4px 7px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #7b4e9e;
  background: #eaeaf8;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 8px;
}
.social-links a {
  display: flex;
  align-items: center;
  border-radius: 10px;
  transition: background 0.15s;
  padding: 7px;
}
.social-links a:hover {
  background: #e6ecfa;
}
.social-links img {
  height: 32px;
  width: 32px;
  display: block;
}

/* Lists with numbers in about/other pages */
.about ol {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding-left: 20px;
  list-style: decimal inside;
  color: #328c95;
  font-weight: 500;
}

/* Blog page article list */
.features .content-wrapper ul {
  margin-bottom: 0;
  gap: 6px;
}

/* -----------
   Cookie Banner
------------- */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1200;
  width: 100vw;
  background: linear-gradient(90deg, #fff6f1 85%, #e6ecfa 100%);
  box-shadow: 0 -2px 22px 0 rgba(216,153,94,0.10);
  padding: 18px 5vw 22px 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-size: 1rem;
  border-radius: 33px 33px 0 0;
  animation: cookie-slide-in .7s ease;
}
@keyframes cookie-slide-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent p {
  margin-bottom: 0;
  color: #3c3a32;
  max-width: 580px;
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  width: 100%;
  justify-content: center;
}
.cookie-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 17px;
  padding: 10px 26px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(216,153,94,0.07);
  transition: background 0.16s, color 0.16s;
}
.cookie-accept {
  background: #febb63;
  color: #11506c;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #feb637;
  color: #fff;
}
.cookie-reject {
  background: #e6ecfa;
  color: #214057;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #aaddec;
  color: #11506c;
}
.cookie-settings {
  background: none;
  color: #214057;
  border: 2px solid #aaddec;
  padding: 8px 16px;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #e4f3ed;
}

/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(44, 56, 71, 0.32);
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in-modal .2s;
}
@keyframes fade-in-modal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff6f1;
  padding: 38px 26px;
  border-radius: 22px;
  box-shadow: 0 6px 48px 0 rgba(216,153,94,0.22);
  max-width: 420px;
  width: 94vw;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: pop-in-modal .22s cubic-bezier(.76,-0.16,.26,1.33);
}
@keyframes pop-in-modal {
  from { transform: scale(.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: #6a4167;
  margin-bottom: 15px;
}
.cookie-category {
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category input[type=checkbox] {
  accent-color: #feb637;
  margin-right: 2px;
}
.cookie-category label {
  font-size: 1rem;
  color: #353029;
}
.cookie-essential {
  background: #e4f3ed;
  border-radius: 8px;
  padding: 4px 10px;
  color: #214057 !important;
  font-size: .97rem;
}
.cookie-modal-close {
  position: absolute;
  right: 12px; top: 10px;
  font-size: 1.3rem;
  border: none;
  background: none;
  color: #214057;
  border-radius: 50%;
  padding: 7px;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #e6ecfa;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 22px;
}

/* Utility */
.mt-2 {
  margin-top: 16px;
}
.mb-2 {
  margin-bottom: 16px;
}
.text-center {
  text-align: center;
}

/* RESPONSIVE: Mobile First */
@media (max-width: 1180px) {
  .container {
    max-width: 99vw;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 920px) {
  .footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .main-nav ul {
    display: none;
  }
  .main-nav .btn-primary {
    display: none;
  }
  .main-nav {
    justify-content: space-between;
    padding: 13px 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero,
  .section {
    padding: 32px 8px;
    border-radius: 0;
    margin-bottom: 40px;
  }
  .hero .content-wrapper {
    align-items: flex-start;
  }
  .features ul,
  .features .content-wrapper ul,
  .services ul,
  .about ul {
    flex-direction: column;
    gap: 10px;
  }
  .content-wrapper,
  .content-grid,
  .footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    max-width: 97vw;
  }
  .card,
  .services-list .service-item {
    min-width: 94vw;
  }
  .cookie-actions {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 540px) {
  h1, .h1 {
    font-size: 1.46rem;
  }
  h2, .h2 {
    font-size: 1.13rem;
  }
  .container {
    padding-left: 4vw;
    padding-right: 4vw;
  }
  footer {
    padding: 22px 4vw 9px 4vw;
    border-radius: 24px 24px 0 0;
  }
  .footer-brand img {
    height: 40px;
  }
  .section,
  .hero {
    padding: 20px 5vw;
    margin-bottom: 27px;
  }
}

/* Focus and Accessibility */
:focus {
  outline: 2px solid #feb637 !important;
  outline-offset: 2px;
}
::-webkit-input-placeholder { color: #aaa; }
::-moz-placeholder { color: #aaa; }
:-ms-input-placeholder { color: #aaa; }
::placeholder { color: #aaa; }

/* Hide scrollbars for mobile nav when open */
.mobile-menu {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.mobile-menu::-webkit-scrollbar {
  display: none;
}
