/* ====================================================================
   RESET & BASELINE 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
  box-sizing: inherit;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  background: #fff;
  color: #111;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  min-width: 300px;
  -webkit-font-smoothing: antialiased;
}
a {
  color: #111;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1c4d6b;
  text-decoration: underline;
}
ul, ol {
  list-style: inside disc;
  margin: 16px 0 16px 24px;
  padding-left: 0;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  display: block;
}

/* ====================================================================
   TYPOGRAPHY - MONOCHROME SOPHISTICATED
   ==================================================================== */
h1, h2, h3, h4, h5, h6 {
  color: #161616;
  font-family: 'Nunito Sans', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 18px 0;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.17;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.75rem;
  line-height: 1.22;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: 14px;
}
strong, b {
  font-weight: bold;
  color: #111;
}
blockquote {
  border-left: 4px solid #222;
  color: #414141;
  font-size: 1.1rem;
  font-style: italic;
  margin: 24px 0;
  padding: 12px 18px;
  background: #f5f5f6;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ====================================================================
   HEADER & NAVIGATION
   ==================================================================== */
header {
  background: #fff;
  border-bottom: 1px solid #e8e8ea;
  padding-top: 12px;
  padding-bottom: 12px;
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.main-nav {
  display: flex;
  gap: 24px;
}
.main-nav a {
  font-family: 'Nunito Sans', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #161616;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border 0.22s, color 0.22s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #1C4D6B;
  border-bottom: 2px solid #1C4D6B;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #181818;
  cursor: pointer;
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  border-radius: 6px;
  transition: background 0.16s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #e5e5e5;
  outline: none;
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 88vw;
  max-width: 350px;
  height: 100vh;
  background: #191919;
  color: #fff;
  z-index: 999;
  box-shadow: -2px 0 24px rgba(20,20,20,0.19);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.47,1.64,.41,.8);
  display: flex;
  flex-direction: column;
  padding: 32px 26px 0 26px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-left: auto;
  font-size: 2em;
  border: none;
  background: none;
  color: #fff;
  cursor: pointer;
  margin-bottom: 34px;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  transition: background 0.15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #444;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 10px;
}
.mobile-nav a {
  font-family: 'Nunito Sans', 'Roboto', Arial, sans-serif;
  font-size: 1.2rem;
  color: #f5f5f5;
  font-weight: 700;
  padding: 10px 0 10px 4px;
  border-left: 3px solid transparent;
  transition: color 0.23s, border 0.23s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FCE76C;
  border-left: 3px solid #FCE76C;
}

@media(max-width:1020px) {
  .container {
    max-width: 95vw;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 18px;
  }
}
@media (max-width: 840px) {
  header .container {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ====================================================================
   HERO SECTION
   ==================================================================== */
.hero {
  background: #fff;
  color: #181818;
  border-bottom: 1px solid #e8e8ea;
  min-height: 290px;
  display: flex;
  align-items: center;
  padding: 0;
  margin-bottom: 32px;
}
.hero .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 15px;
  padding: 40px 0 24px 0;
}
.hero h1 {
  color: #181818;
  margin-bottom: 10px;
  font-size: 2rem;
}
.hero p {
  font-size: 1.12rem;
  color: #464646;
  margin-bottom: 10px;
}
.hero .btn {
  margin-top: 10px;
}
@media (min-width:650px) {
  .hero .content-wrapper {
    max-width: 60%;
  }
  .hero h1 {
    font-size: 2.6rem;
  }
} 
@media (max-width:600px) {
  .hero {
    min-height: 200px;
    margin-bottom: 18px;
    padding-bottom: 0px;
  }
  .hero .content-wrapper {
    padding: 26px 0 16px 0; 
    max-width: 100%;
  }
  .hero h1 {
    font-size: 1.40rem;
  }
}
/* ====================================================================
   FEATURES, CARDS, FLEXBOX LAYOUTS
   ==================================================================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 18px 0 10px 0;
}
.feature-grid > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 20px rgba(25,25,25,0.10);
  border: 1.5px solid #ededed;
  padding: 26px 20px 20px 20px;
  max-width: 277px;
  flex-basis: 260px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.24s, border 0.22s, transform 0.18s;
}
.feature-grid > div img {
  width: 46px;
  height: 46px;
  margin-bottom: 7px;
}
.feature-grid > div:hover {
  box-shadow: 0 10px 32px rgba(44,44,44,0.16);
  border-color: #C5C7CC;
  transform: translateY(-2px) scale(1.012);
  z-index:1;
}
@media (max-width:900px) {
  .feature-grid { gap: 18px; }
  .feature-grid > div { max-width: 48vw; min-width: 220px;}
}
@media (max-width:650px) {
  .feature-grid { flex-direction: column; gap: 20px; }
  .feature-grid > div { max-width:100%; min-width:140px; }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(23, 23, 23, 0.14);
  border: 1px solid #e3e3e3;
  margin-bottom: 20px;
  position: relative;
  padding: 26px 20px 18px 20px;
  max-width: 350px;
  flex: 1 1 260px;
  transition: box-shadow 0.19s, border 0.21s, transform 0.16s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 7px 26px rgba(23,23,23,0.19);
  border-color: #bbb;
  transform: translateY(-2px);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media(max-width:900px) {
  .content-grid { gap: 12px; }
}
.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: stretch;
    gap: 16px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* ====================================================================
   TESTIMONIALS
   ==================================================================== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f5f5f8;
  border-radius: 13px;
  box-shadow: 0 3px 18px rgba(30,30,30,0.06);
  color: #181818;
  margin-bottom: 18px;
  border-left: 5px solid #1c4d6b;
  font-size: 1.02rem;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.testimonial-card p {
  color: #111;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-card span {
  color: #323232;
  font-size: 1em;
  margin-left: auto;
  font-family: 'Nunito Sans', 'Roboto', Arial, sans-serif;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 30px rgba(24,24,24, .14);
  border-left: 5px solid #6EB35D;
  background: #fff;
  transform: translateY(-1px) scale(1.01);
  z-index: 1;
}

@media (max-width:650px) {
 .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    padding: 16px;
    font-size: 1rem;
  }
 .testimonial-card span {
    margin-left: 0;
  }
}

/* ====================================================================
   BUTTONS
   ==================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border-radius: 5px;
  border: none;
  padding: 12px 30px;
  background: #191919;
  color: #fff;
  font-family: 'Nunito Sans', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(35,35,35, .11);
  outline: none;
  transition: background 0.19s, color 0.19s, box-shadow 0.16s, transform 0.18s;
  margin-top: 6px;
  margin-bottom: 6px;
  text-align: center;
}
.btn-primary {
  background: #1C4D6B;
  color: #fff !important;
}
.btn-primary:hover, .btn-primary:focus {
  background: #111;
  color: #FCE76C !important;
  transform: translateY(-2px) scale(1.04);
}
.btn-secondary {
  background: #6EB35D;
  color: #191919 !important;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #111;
  color: #FCE76C !important;
}
.btn-light {
  background: #fff;
  color: #1C4D6B !important;
  border: 1.2px solid #1C4D6B;
}
.btn-light:hover, .btn-light:focus {
  background: #eaeaea;
  color: #191919 !important;
}

/* ====================================================================
   FOOTER
   ==================================================================== */
footer {
  border-top: 1.6px solid #e8e8ea;
  background: #191919;
  color: #fff;
  padding: 35px 0 28px 0;
  font-size: 1.08rem;
}
footer .container {
  flex-direction: column;
  gap: 23px;
}
footer .content-wrapper {
  flex-direction: row;
  gap: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-brand {
  color: #fff;
  font-weight: 800;
  font-size: 1.14rem;
  font-family: 'Nunito Sans', 'Roboto', Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.footer-brand img {
  width: 36px;
  height: 36px;
}
.footer-nav {
  display: flex;
  gap: 19px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer-nav a {
  color: #ededed;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Nunito Sans', 'Roboto', Arial, sans-serif;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FCE76C;
  text-decoration: underline;
}
.footer-contact {
  color: #eaeaea;
  font-size: 1em;
  line-height: 1.54;
  margin-left: 0;
}
.footer-contact img {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-bottom: -5px;
  margin-right: 7px;
  opacity: 0.80;
}
@media(max-width:900px){
  footer .content-wrapper { flex-direction: column; gap: 18px;}
}
@media(max-width:650px){
  footer { font-size: 0.97rem; padding: 19px 0 18px 0;}
}

/* ====================================================================
   COOKIE CONSENT BANNER & MODAL
   ==================================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: #191919;
  color: #fff;
  font-size: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 26px;
  box-shadow: 0 -5px 30px rgba(32,32,32,.16);
  transition: transform 0.32s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translateY(0);
  width: 100%;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner .btn {
  font-size: 1em;
  padding: 7px 23px;
  border-radius: 4px;
  margin: 0;
}
.cookie-banner .btn-accept {
  background: #6EB35D;
  color: #191919 !important;
}
.cookie-banner .btn-accept:hover {
  background: #fff;
  color: #1C4D6B !important;
}
.cookie-banner .btn-reject {
  background: #d4d4d6;
  color: #181818 !important;
}
.cookie-banner .btn-reject:hover {
  background: #1C4D6B;
  color: #fff !important;
}
.cookie-banner .btn-settings {
  background: #fff;
  color: #191919 !important;
  border: 1px solid #bbb;
}
.cookie-banner .btn-settings:hover {
  background: #FCE76C;
  color: #1C4D6B !important;
}
@media (max-width:680px){
  .cookie-banner{
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.97em;
    padding: 15px 9px 13px 10px;
  }
  .cookie-banner .cookie-buttons{
    gap: 7px;
  }
}

/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: rgba(8,8,14, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.24s;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  color: #181818;
  border-radius: 13px;
  box-shadow: 0 10px 40px rgba(30,30,40,.18);
  padding: 36px 34px 28px 34px;
  min-width: 300px;
  max-width: 96vw;
  width: 370px;
  z-index: 3200;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 1.07rem;
  position: relative;
  animation: cookie-modal-in 0.33s cubic-bezier(.37,1.34,.54,.53);
}
@keyframes cookie-modal-in {
  0% { transform: scale(.92) translateY(30px); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  right: 13px;
  top: 13px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  color: #222;
  font-size: 1.45rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #eee;
}
.cookie-modal h2 {
  font-size: 1.19rem;
  color: #161616;
  font-family: 'Nunito Sans', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}
.cookie-category label {
  flex: 1;
  font-weight: 500;
}
.cookie-category input[type=checkbox] {
  accent-color: #1C4D6B;
  width: 22px; height: 22px;
}
.cookie-category.essential label {
  color: #818181;
  font-style: italic;
}
.cookie-modal .btn {
  margin: 9px 5px 0 0;
  font-size: 1em;
}
@media(max-width:500px){
  .cookie-modal{ padding: 20px 7px 14px 12px; width:95vw; font-size: 0.99rem; }
}

/* ====================================================================
   WEATHER WIDGET PLACEHOLDER
   ==================================================================== */
.weather-widget-placeholder {
  background: #f7f7fa;
  border-radius: 13px;
  border: 1.4px dashed #bababa;
  padding: 26px;
  text-align: center;
  color: #AAA;
  font-weight: 500;
  margin-bottom: 18px;
}

/* ====================================================================
   FORMS, INPUTS, FAQS (if any used)
   ==================================================================== */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1em;
  border: 1.3px solid #BDBDBD;
  border-radius: 4px;
  padding: 11px 14px;
  margin-bottom: 10px;
  color: #111;
  background: #f9f9f9;
  transition: border 0.17s, box-shadow 0.20s;
}
input:focus, textarea:focus, select:focus {
  border-color: #1C4D6B;
  box-shadow: 0 0 0 2px #FCE76C44;
  outline: none;
}

label {
  font-family: 'Nunito Sans', 'Roboto', Arial, sans-serif;
  font-weight: 500;
}

/* ====================================================================
   CONTENT SPACING & FLEXBOX OVERRIDES
   ==================================================================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
@media (max-width:650px) {
  section { padding: 24px 2vw 24px 2vw; margin-bottom: 36px; }
}

.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; }

/* No grid or column properties used anywhere */

/* ====================================================================
   RESPONSIVE TYPOGRAPHY
   ==================================================================== */
@media (max-width: 650px) {
  h1 { font-size: 1.40rem; }
  h2 { font-size: 1.13rem; }
  h3 { font-size: 1.02rem; }
}

/* ====================================================================
   SUPPLEMENTARY: SCROLLBAR, SELECTION, FOCUS VISIBLE
   ==================================================================== */
::-webkit-scrollbar {
  width: 9px;
  background: #eaeaea;
}
::-webkit-scrollbar-thumb {
  background: #bdbdbd;
  border-radius: 6px;
}
::selection {
  background: #FCE76C;
  color: #1C4D6B;
}
:focus-visible {
  outline: 2.5px solid #FCE76C;
  outline-offset: 2px;
}

/* ====================================================================
   UTILITY CLASSES (if needed)
   ==================================================================== */
.d-none { display: none !important; }
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.mt-1 { margin-top: 8px; }
.mb-1 { margin-bottom: 8px; }

/* ====================================================================
   PRINT OVERRIDE (for privacy/legal pages)
   ==================================================================== */
@media print {
  header, nav, .mobile-menu, footer, .cookie-banner, .cookie-modal, .cookie-modal-backdrop { display: none !important; }
  main, .container, section { margin: 0 !important; padding: 0 !important; }
  body { color: #000; background: #fff; }
}

/* ====================================================================
   BRAND FONT IMPORT (GOOGLE FONTS) – ensure fonts are loaded early in HTML for best effect
   ==================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@700;800&family=Roboto:wght@400;500;700&display=swap');

