/* === RESET & BASE === */
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; }
*, *:before, *:after { box-sizing: inherit; }
body {
  min-height: 100vh;
  background: #f4f7fa;
  color: #14406b;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 1em;
}
a {
  color: #14406b;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
a:hover, a:focus {
  color: #ffc93c;
}
strong { font-weight: 700; }
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 28px;
}
@media (max-width: 768px) {
  section, .section {
    padding: 28px 10px;
    margin-bottom: 36px;
    border-radius: 18px;
  }
}

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  color: #14406b;
  letter-spacing: 0.01em;
  font-weight: 700;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
  color: #14406b;
  background: linear-gradient(90deg, #14406b 70%, #ffc93c 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  /* Artistic/creative flair */
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
  background: none;
}
h2:after {
  content: "";
  display: block;
  width: 38px;
  height: 5px;
  background: #ffc93c;
  margin: 12px 0 0 0;
  border-radius: 2.5px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #14406b;
}
p {
  margin-bottom: 18px;
}
.text-section h3 {
  color: #14406b;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1.13rem;
  margin: 22px 0 10px 0;
}
.text-section ul, .text-section ol {
  margin-bottom: 18px;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8em 2em;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  border-radius: 32px;
  background: #ffc93c;
  color: #14406b;
  border: none;
  box-shadow: 0 2px 12px 0 rgba(20,64,107,0.14);
  transition: background 0.15s, box-shadow 0.2s, transform 0.15s;
  cursor: pointer;
  margin-top: 0.6em;
  margin-bottom: 0.6em;
}
.btn-primary:hover, .btn-primary:focus {
  background: #ffe289;
  color: #10315b;
  box-shadow: 0 4px 22px 0 rgba(20,64,107,0.24);
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7em 1.6em;
  border-radius: 28px;
  background: #14406b;
  color: #fff;
  border: none;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.16s, box-shadow 0.16s, transform 0.13s;
  margin-top: 0.4em;
  margin-bottom: 0.4em;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #21598f;
  color: #ffc93c;
  box-shadow: 0 2px 16px 0 rgba(20,64,107,0.11);
  transform: translateY(-1px) scale(1.02);
}

/* === HEADER === */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 6px 28px 0 rgba(20,64,107, 0.09);
  z-index: 99;
  padding: 0;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 12px;
}
nav {
  display: flex;
  gap: 20px;
  flex: 1;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #14406b;
  position: relative;
  padding: 6px 0;
  transition: color 0.16s;
}
header nav a:hover, header nav a:focus {
  color: #ffc93c;
}
header .btn-primary {
  margin-left: 12px;
}

/* Mobile Nav */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 199;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #14406b;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #ffc93c;
  transform: scale(1.08);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 5000;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.77,0,.175,1);
  box-shadow: 0 8px 40px 0 rgba(20,64,107,0.16);
  padding: 0;
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #14406b;
  cursor: pointer;
  transition: color 0.19s, transform 0.13s;
  z-index: 5100;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #ffc93c;
  transform: scale(1.11);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
  margin: 80px 0 0 34px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1.19rem;
  font-weight: 600;
  color: #14406b;
  padding: 8px 0;
  width: 100%;
  border-radius: 18px;
  transition: color 0.16s, background 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff;
  background: #ffc93c;
}
@media (max-width: 1000px) {
  header nav, header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1000px) {
  .mobile-menu {
    display: none !important;
  }
}

/* === HERO === */
.hero {
  background: #eef4fb;
  border-radius: 32px;
  margin-bottom: 42px;
  box-shadow: 0 9px 44px 0 rgba(20,64,107,0.08);
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
@media (max-width: 600px) {
  .hero {
    border-radius: 18px;
    min-height: 180px;
  }
}
.hero .container {
  padding-top: 54px;
  padding-bottom: 54px;
  align-items: stretch;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: center;
  max-width: 600px;
}
.hero h1 {
  font-size: 2.8rem;
  background: linear-gradient(90deg, #14406b 75%, #ffc93c 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
}
@media (max-width: 650px) {
  .hero h1 {
    font-size: 2.0rem;
  }
  .hero .container {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

/* === FLEX GRIDS === */
.feature-grid, .card-container, .content-grid, .numbers ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .feature-grid, .card-container, .content-grid, .numbers ul {
    gap: 16px;
    flex-direction: column;
    justify-content: flex-start;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 28px 24px 22px 24px;
  box-shadow: 0 2px 22px 0 rgba(20,64,107,0.10);
  border-radius: 18px;
  min-width: 230px;
  flex: 1 0 220px;
  transition: box-shadow 0.16s, transform 0.12s;
  margin-bottom: 20px;
  position: relative;
}
.feature-item img {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 2px 4px #ffc93c44);
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 10px 44px 0 rgba(20,64,107,0.11);
  transform: translateY(-2px) scale(1.012);
  background: #fffbe6;
}

.card-container {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  box-shadow: 0 4px 18px 0 rgba(20,64,107,0.09);
  border-radius: 16px;
  padding: 24px;
  transition: box-shadow 0.15s, transform 0.13s;
  min-width: 220px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 10px 32px 0 rgba(255,201,60,0.14);
  transform: translateY(-2px) scale(1.015);
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/* === TESTIMONIALS === */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 36px 20px 24px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(20,64,107,0.08);
  margin-bottom: 22px;
  min-width: 210px;
  max-width: 780px;
  position: relative;
  font-size: 1.09rem;
  color: #14406b;
  transition: box-shadow 0.16s;
  border-left: 6px solid #ffc93c;
  word-break: break-word;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 10px 28px 0 rgba(255,201,60,0.19);
  background: #fffbe9;
}
.testimonial-card p {
  color: #14406b;
  margin: 0 0 6px 0;
  font-size: 1.13rem;
}
.testimonial-card span {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  color: #21598f;
  font-size: 1.01rem;
  opacity: 0.93;
}
@media (max-width: 650px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 14px 16px 16px;
    font-size: 1rem;
  }
}

/* === TABLES === */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 28px 0 24px 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(20,64,107,0.06);
  overflow: hidden;
}
thead th {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  color: #fff;
  background: #ffc93c;
  padding: 13px 10px;
}
tbody td {
  font-size: 1rem;
  color: #14406b;
  padding: 14px 10px;
  border-bottom: 1px solid #eef4fb;
}
tbody tr:last-child td {
  border-bottom: none;
}
@media (max-width: 600px) {
  table thead {
    display: none;
  }
  table, tbody, tr, td {
    display: block;
    width: 100%;
  }
  table tr {
    margin-bottom: 16px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1px 8px 0 rgba(20,64,107,0.06);
    padding: 10px;
  }
  table td {
    padding: 10px 6px;
    border-bottom: none;
    font-size: 1rem;
  }
}

/* === FOOTER === */
footer {
  background: #14406b;
  color: #fff;
  padding: 52px 0 34px 0;
  font-size: 1rem;
}
footer .container {
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 24px;
}
.footer-nav nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-nav nav a {
  color: #fff;
  opacity: 0.96;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  transition: color 0.17s, opacity 0.14s;
}
.footer-nav nav a:hover, .footer-nav nav a:focus {
  color: #ffc93c;
  opacity: 1;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 12px;
}
.footer-brand img {
  width: 74px;
  height: auto;
}
.social-media {
  display: flex;
  gap: 22px;
}
.social-media a img {
  width: 33px;
  height: 33px;
  filter: drop-shadow(0 2px 8px #ffc93c22);
  transition: filter 0.15s, transform 0.14s;
}
.social-media a:hover img, .social-media a:focus img {
  filter: drop-shadow(0 4px 18px #ffc93c88);
  transform: scale(1.08);
}
.footer-text {
  font-size: 0.97rem;
  margin-top: 22px;
  color: #fff;
  opacity: 0.7;
}
@media (max-width: 900px) {
  .footer-nav {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  footer {
    padding: 28px 0 18px 0;
  }
  .footer-brand img {
    width: 54px;
  }
}

/* === MAP PREVIEW === */
.map-preview img {
  width: 100%;
  max-width: 380px;
  border-radius: 11px;
  box-shadow: 0 2px 14px 0 rgba(20,64,107,0.11);
  margin: 14px 0 0 0;
  display: block;
}

/* === NUMBERS IN REFERENCIE === */
.numbers ul {
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 8px;
}
.numbers li {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 10px 0 rgba(255,201,60,0.05);
  font-size: 1.15rem;
  padding: 18px 30px 18px 22px;
  margin-bottom: 8px;
  margin-right: 6px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #14406b;
}
.numbers strong {
  display: inline-block;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1.38rem;
  margin-right: 10px;
  color: #ffc93c;
}
@media (max-width: 700px){
  .numbers ul{
    flex-direction: column;
    gap: 11px;
  }
  .numbers li{
    font-size:1rem;
    padding: 13px 14px 13px 12px;
  }
}

/* === TEXT SECTIONS === */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 3px;
}
.text-section ul, .text-section ol {
  margin-bottom: 13px;
}
.text-section li {
  margin-bottom: 7px;
}
.text-section img {
  vertical-align: middle;
  margin-right: 7px;
  width: 22px;
  height: 22px;
  margin-bottom: -4px;
}

/* === FORM ELEMENTS (for completeness) === */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid #d4e0ef;
  border-radius: 9px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  background: #f4f7fa;
  margin-bottom: 18px;
  transition: border 0.19s, background 0.13s;
}
input:focus, textarea:focus {
  border: 1.5px solid #ffc93c;
  background: #fff;
  outline: none;
}
label {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1.01rem;
  font-weight: 500;
  margin-bottom: 5px;
  color: #14406b;
  display: block;
}

/* === COOKIE CONSENT BANNER & MODAL === */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 7000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 28px;
  background: #fffbe6;
  border-top: 4px solid #ffc93c;
  box-shadow: 0 -2px 18px 0 rgba(20,64,107,0.12);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.03rem;
  color: #14406b;
  animation: slideUp 0.6s cubic-bezier(.77,0,.175,1) 0.12s;
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
}
.cookie-banner .btn-primary, .cookie-banner .btn-secondary {
  font-size: 0.98rem;
  padding: 0.6em 1.2em;
  margin: 0;
}
.cookie-banner .btn-secondary {
  background: #14406b;
  color: #fff;
}
.cookie-banner .btn-secondary:hover {
  background: #21598f;
}
@media (max-width: 800px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 12px;
  }
  .cookie-banner .cookie-buttons {
    gap: 8px;
  }
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 99999;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(20,64,107,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.22s cubic-bezier(.77,0,.175,1);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 48px 0 rgba(20,64,107,0.23);
  max-width: 400px;
  width: 96vw;
  padding: 36px 24px 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: popin 0.33s cubic-bezier(.77,0,.175,1);
}
@keyframes popin {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1.0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  color: #14406b;
  margin-bottom: 10px;
}
.cookie-category {
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.cookie-category label {
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', sans-serif;
}
.toggle-switch {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #eef4fb;
  border-radius: 11px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
}
.toggle-switch:checked {
  background: #ffc93c;
}
.toggle-switch::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 2px;
  transition: transform 0.20s cubic-bezier(.77,0,.175,1);
  box-shadow: 0 1px 4px 0 rgba(20,64,107,.09);
}
.toggle-switch:checked::before {
  transform: translateX(16px);
  background: #14406b;
}
.cookie-modal .btn-primary, .cookie-modal .btn-secondary {
  width: 100%;
  margin: 12px 0 0 0;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #14406b;
  cursor: pointer;
  transition: color 0.15s, transform 0.12s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #ffc93c;
  transform: scale(1.13);
}

/* === ARTISTIC/CREATIVE ACCENTS === */
h1, h2, .btn-primary, .feature-item, .testimonial-card, .card {
  /* Artistic/creative box-shadow for fun accent */
  box-shadow: 0 2px 18px 0 rgba(255,201,60,0.06), 0 0.25px 6px 0 rgba(20,64,107,0.10);
}
.main-accent {
  color: #ffc93c;
  background: none;
}
h2:after {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  background: #ffc93c;
  border-radius: 2px;
  margin: 11px 0 0 0;
}
@media (max-width: 600px) { h2:after { width: 28px; } }

/* === UTILITY === */
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.py-2 { padding-top: 16px; padding-bottom: 16px; }

/* === SPACING .section requirement === */
.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; }

/* === ACCESSIBILITY === */
:focus {
  outline: 2px solid #ffc93c;
  outline-offset: 2px;
  z-index: 10;
}

/* === EXTRAS FOR BEAUTY === */
.feature-item::before {
  content: ""; position: absolute; z-index: 0; top:12px; left: -15px;
  width: 18px; height: 18px;
  background: #ffc93c33;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .6;
}

.feature-item:hover::before { opacity: 0.9; }

/* === ANIMATIONS === */
.btn-primary, .btn-secondary {
  transition: background 0.18s, box-shadow 0.16s, color 0.16s, transform 0.16s;
}
.card, .feature-item, .testimonial-card {
  transition: box-shadow 0.14s, background 0.13s, transform 0.13s;
}

/* === RESPONSIVE === */
@media (max-width: 550px) {
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.05rem; }
}

@media (max-width: 450px) {
  .container { padding: 0 6px; }
  section, .section { padding: 16px 3px; }
  .btn-primary, .btn-secondary { font-size: .95rem; }
}

/* =========== END =========== */
