/* 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,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #222;
  background: #fff;
  min-height: 100vh;
  line-height: 1.7;
}

/* BRAND FONT IMPORTS (fallback for local install) */
@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');

/* TYPOGRAPHY SCALE & HEADINGS */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #18688B;
  letter-spacing: -1px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #18688B;
  letter-spacing: -0.5px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #222;
}

h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #18688B;
}
p, ul, ol, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #222;
}

strong {
  color: #18688B;
  font-weight: 700;
}
a {
  color: #18688B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F9D14D;
  text-decoration: underline;
  outline: none;
}

/* BASE SPACING & LAYOUT */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* NAVIGATION & HEADER */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(24,104,139,0.04);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 18px 20px;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #222;
  padding: 7px 0;
  transition: color 0.2s;
}
nav a.cta-primary {
  background: #18688B;
  color: #fff;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 24px;
  margin-left: 12px;
  box-shadow: 0 2px 12px rgba(24,104,139,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.3s;
}
nav a.cta-primary:hover,
nav a.cta-primary:focus {
  background: #F9D14D;
  color: #18688B;
  box-shadow: 0 4px 20px rgba(249,209,77,0.16);
}

@media (max-width: 900px) {
  nav {
    gap: 14px;
  }
  nav a.cta-primary {
    padding: 9px 18px;
    font-size: 0.97rem;
  }
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: relative;
  color: #18688B;
  font-size: 2.2rem;
  background: none;
  border: none;
  line-height: 1;
  cursor: pointer;
  padding: 8px 10px;
  z-index: 60;
  border-radius: 6px;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #F9D14D;
  background: #f7f7f7;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98);
  z-index: 100;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: transform 0.4s cubic-bezier(.55,0,.1,1), opacity 0.25s;
  transform: translateX(100%);
  opacity: 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 26px 26px 10px 0;
  font-size: 2.4rem;
  background: none;
  border: none;
  color: #18688B;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.2s;
}
.mobile-menu-close:focus {
  outline: 2px solid #F9D14D;
  background: #f7f7f7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  align-items: flex-start;
  padding: 10px 32px;
}
.mobile-nav a {
  color: #222;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  padding: 14px 0;
  font-weight: 600;
  width: 100%;
  border-radius: 7px;
  transition: background 0.16s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F9D14D88;
  color: #18688B;
}
@media (max-width: 900px) {
  nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* MAIN & BASE ELEMENTS */
main {
  width: 100%;
  min-height: 60vh;
  margin-bottom: 60px;
}
ul, ol {
  margin-left: 24px;
  padding-left: 8px;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 6px;
  max-width: 700px;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

/* SECTION SPACING (MANDATORY PATTERN) */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(24,104,139,0.05);
  padding: 28px 24px 20px 24px;
  transition: box-shadow 0.25s, transform 0.21s;
  min-width: 260px;
  max-width: 350px;
  flex: 1 1 260px;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 28px rgba(24,104,139,0.16);
  transform: translateY(-4px);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 10px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F8FAFB;
  border-radius: 14px;
  padding: 20px 28px;
  margin-bottom: 20px;
  box-shadow: 0 1px 10px rgba(24,104,139,0.05);
  transition: box-shadow 0.2s, background 0.15s;
  font-size: 1.05rem;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 4px 18px rgba(24,104,139,0.12);
  background: #fffde4;
}
.testimonial-card p {
  color: #222;
  margin-bottom: 0;
}
.testimonial-card span {
  color: #18688B;
  font-weight: 700;
  font-size: 1em;
  margin-left: auto;
  opacity: 0.8;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.text-section {
  margin-bottom: 16px;
  max-width: 900px;
}

@media (max-width: 768px) {
  .content-wrapper {
    gap: 18px;
    padding: 0;
  }
  .section {
    padding: 28px 7px;
    margin-bottom: 40px;
  }
  .card-container {
    gap: 14px;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .card {
    padding: 20px 10px 16px 12px;
    min-width: 100%;
    max-width: 100%;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 12px;
  }
}

/* BUTTONS & CALL TO ACTIONS */
.cta-primary, .cta-secondary, button, input[type="submit"] {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #18688B;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 10px 30px;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(24,104,139,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.26s, transform 0.15s;
  margin-top: 8px;
  outline: none;
}
.cta-primary:hover, .cta-primary:focus,
.cta-secondary:hover, .cta-secondary:focus,
button:hover, button:focus,
input[type="submit"]:hover, input[type="submit"]:focus {
  background: #F9D14D;
  color: #18688B;
  box-shadow: 0 8px 24px rgba(249,209,77,0.16);
  transform: translateY(-1px) scale(1.03);
}
.cta-secondary {
  background: #fff;
  color: #18688B;
  border: 1.5px solid #18688B;
  margin-left: 8px;
}
.cta-secondary:hover,
.cta-secondary:focus {
  background: #F9D14D;
  color: #18688B;
}

/* FORMS */
input[type="text"], input[type="email"], textarea {
  width: 100%;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 16px;
  font-family: inherit;
  font-size: 1rem;
  color: #222;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 2px rgba(24,104,139,0.01);
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #18688B;
  box-shadow: 0 2px 12px rgba(24,104,139,0.13);
  outline: none;
}

/* FOOTER */
footer {
  background: #F8FAFB;
  border-top: 1.5px solid #eef1f4;
  font-size: 0.97rem;
  color: #666;
  padding: 0;
}
footer .container {
  padding: 36px 20px 24px 20px;
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
footer nav a {
  color: #18688B;
  padding: 3px 8px;
  border-radius: 7px;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.13s;
}
footer nav a:hover, footer nav a:focus {
  background: #F9D14D66;
  color: #18688B;
}
footer img {
  height: 16px;
  width: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 3px;
}
footer .social-media {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 8px 0 2px 0;
}
footer .social-media a {
  padding: 5px;
  border-radius: 12px;
  background: transparent;
  transition: background 0.16s;
}
footer .social-media a:hover, footer .social-media a:focus {
  background: #F9D14D30;
}
footer .content-wrapper>div:last-child {
  font-size: 0.90rem;
  color: #858585;
}
@media (max-width: 550px) {
  footer .container {
    padding: 28px 7px 18px 7px;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1200;
  background: #fff;
  color: #222;
  border-top: 1.5px solid #eaecef;
  box-shadow: 0 -4px 14px rgba(24,104,139,0.10);
  padding: 24px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transition: transform 0.3s ease, opacity 0.22s;
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  font-size: 0.98rem;
  text-align: center;
  color: #222;
  max-width: 520px;
}
.cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 5px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 24px;
  border-radius: 24px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.22s, color 0.2s, box-shadow 0.23s;
  background: #18688B;
  color: #fff;
  outline: none;
}
.cookie-banner .cookie-settings {
  background: #fff;
  color: #18688B;
  border: 1.5px solid #18688B;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #F9D14D;
  color: #18688B;
}
.cookie-banner .accept {
  background: #18688B;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #F9D14D;
  color: #18688B;
}
.cookie-banner .reject {
  background: #fff;
  color: #18688B;
  border: 1.5px solid #e5e7eb;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #F9D14D;
  color: #18688B;
}
@media (max-width: 480px) {
  .cookie-banner p {
    font-size: 0.93rem;
    max-width: 95vw;
  }
  .cookie-actions {
    width: 100%;
    justify-content: center;
    gap: 7px;
  }
}

/* COOKIE MODAL POPUP */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(24,104,139,0.18);
  animation: fadein 0.28s;
}
.cookie-modal {
  min-width: 300px;
  max-width: 95vw;
  width: 370px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(24,104,139,0.18);
  padding: 30px 26px 18px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
  animation: slideinup 0.32s;
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  color: #18688B;
  margin-bottom: 7px;
  text-align: left;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cookie-category label {
  font-size: 1rem;
  color: #222;
  padding-right: 7px;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #18688B;
}
.cookie-modal .cookie-essential {
  color: #858585;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal .cta-primary {
  margin-top: 0;
}

@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideinup {
  from { transform: translateY(60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* MICRO-INTERACTIONS & ANIMATIONS */
.card, .testimonial-card, .cta-primary, .cta-secondary, button, input[type="submit"], .mobile-menu, .cookie-banner, .cookie-modal {
  transition: box-shadow 0.22s, background 0.23s, color 0.21s, transform 0.19s, opacity 0.17s;
}

/* UTILITY CLASSES */
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.text-center { text-align: center !important; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* SCROLL BARS (minimal style) */
body::-webkit-scrollbar {
  width: 9px;
}
body::-webkit-scrollbar-thumb {
  background: #eaecec;
  border-radius: 14px;
}
body::-webkit-scrollbar-track {
  background: #fff;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 520px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.14rem; }
  .container { padding: 0 7px; }
}

/* ACCESSIBILITY */
:focus-visible {
  outline: 2px solid #F9D14D;
  outline-offset: 2px;
}

/* SPECIAL: ENSURE MINIMALIST FEEL */
hr {
  border: none;
  border-top: 1.5px solid #e5e7eb;
  margin: 32px 0;
}

/* HIDE SCROLL ON MOBILE MENU/BANNERS WHEN ACTIVE */
body.mobile-menu-open,
body.cookie-modal-open {
  overflow: hidden;
}

/* END OF STYLE.CSS */
