/* --- CSS 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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  height: 100%;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #F9F5EA;
  color: #133A5A;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #133A5A;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #A1C299;
  outline-offset: 2px;
}
button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

/* --- FONT FACES --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #133A5A;
  font-weight: 700;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.375rem; margin-bottom: 16px; font-weight: 600; }
h4, h5, h6 { font-size: 1.125rem; }

@media (max-width: 768px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.375rem; }
  h3 { font-size: 1.1rem; }
}

/* --- LAYOUT CONTAINER --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* --- GENERAL SECTIONS --- */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.section:last-child, section:last-child {
  margin-bottom: 0;
}
.text-section, .content-grid, .card-container, .usp-grid, .feature-grid, .testimonial-slider, .testimonial-list {
  width: 100%;
}

/* --- FLEXBOX MANDATORY PATTERNS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px 0 rgba(19,58,90,0.04);
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  padding: 32px 24px;
  flex: 1 1 300px;
}
.card:hover {
  box-shadow: 0 10px 32px 0 rgba(19,58,90,0.10);
  transform: translateY(-2px) scale(1.01);
}
.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;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 20px 0 rgba(19, 58, 90, 0.07);
  margin-bottom: 24px;
  color: #133A5A;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 32px 0 rgba(19,58,90,0.13);
  transform: translateY(-2px) scale(1.01);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HERO --- */
.hero {
  padding: 48px 0 32px 0;
  background: linear-gradient(135deg, #A1C299 0%, #F9F5EA 100%);
}
.hero .container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  text-align: left;
  gap: 24px;
}
.hero h1 {
  color: #133A5A;
  font-size: 2.5rem;
  font-family: 'Montserrat', Arial, sans-serif;
  background: none;
}
.hero p {
  font-size: 1.125rem;
  color: #133A5A;
  max-width: 700px;
}

/* --- BUTTONS & CTAs --- */
.cta-primary {
  background: linear-gradient(90deg, #133A5A 0%, #A1C299 100%);
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 1.125rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(19,58,90, 0.10);
  display: inline-block;
  margin-top: 14px;
}
.cta-primary:focus,
.cta-primary:hover {
  background: #133A5A;
  color: #fff;
  box-shadow: 0 6px 40px 0 rgba(19,58,90,0.23);
  transform: translateY(-2px) scale(1.02);
}

/* --- NAVIGATION BAR --- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(19,58,90,0.06);
  padding: 0;
  z-index: 20;
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  justify-content: flex-start;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: #A1C299;
  color: #133A5A;
}
header nav a.cta-primary {
  margin-left: 24px;
  color: #fff;
  background: linear-gradient(90deg, #133A5A, #A1C299);
  transition: background 0.3s, color 0.3s;
  padding: 10px 30px;
}
header nav a.cta-primary:hover, header nav a.cta-primary:focus {
  background: #133A5A;
  color: #fff;
}
header nav a img {
  height: 32px;
  width: auto;
  margin-right: 18px;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: #133A5A;
  color: #fff;
  font-size: 2rem;
  padding: 8px 14px;
  border-radius: 8px;
  margin-left: auto;
  transition: background 0.2s, transform 0.2s;
  z-index: 50;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #A1C299;
  color: #133A5A;
  transform: scale(1.07);
}
.mobile-menu {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #F9F5EA;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 8px 48px rgba(19,58,90,0.25);
  flex-direction: column;
  justify-content: flex-start;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  color: #133A5A;
  font-size: 2.2rem;
  margin: 22px 24px 0 0;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #A1C299;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin: 48px 0 0 32px;
}
.mobile-nav a {
  font-size: 1.3rem;
  padding: 14px 14px 14px 0;
  color: #133A5A;
  border-radius: 4px;
  width: 100%;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #A1C299;
  color: #fff;
}
@media (max-width: 1024px) {
  header nav {
    gap: 8px;
  }
  header nav a img {
    margin-right: 10px;
  }
}
@media (max-width: 900px) {
  header nav a {
    font-size: 0.96rem;
  }
  .container { padding: 0 10px; }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 16px;
    top: 10px;
  }
}

@media (max-width: 768px) {
  .mobile-menu {
    padding-top: 12px;
  }
}

/* --- FEATURE GRIDS & LISTS --- */
.feature-grid, .usp-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid li, .usp-grid > div, .service-list > li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px 0 rgba(19,58,90,0.05);
  padding: 28px 20px;
  min-width: 260px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-grid li:hover, .usp-grid > div:hover, .service-list > li:hover {
  box-shadow: 0 10px 32px 0 rgba(19,58,90,0.10);
  transform: translateY(-2px) scale(1.01);
}
.feature-grid img, .usp-grid img, ul.features img {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}

/* --- TESTIMONIALS --- */
#testimonials, .testimonials {
  background: linear-gradient(90deg, #F9F5EA 85%, #A1C299 100%);
  padding: 60px 0 60px 0;
}
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 900px) {
  .testimonial-slider, .testimonial-list { flex-direction: column; }
}
.testimonial-card {
  min-width: 230px;
  flex: 1 1 360px;
  margin-bottom: 24px;
}
.testimonial-card p,
.testimonial-card strong {
  color: #133A5A;
  font-size: 1rem;
}
.testimonial-card strong {
  display: block;
  margin-top: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #A1C299;
}
.testimonial-card img {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 2px;
  margin-bottom: -4px;
}

/* --- USP GRID --- */
.usp-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.usp-grid > div {
  flex: 1 1 220px;
  max-width: 300px;
}
.usp-grid h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

/* --- LISTS & LEGAL SECTIONS --- */
ul, ol {
  margin-left: 0;
  margin-bottom: 12px;
}
ul li, ol li {
  margin-bottom: 8px;
  line-height: 1.6;
}
ul li strong, ol li strong {
  color: #133A5A;
}
ul li:before {
  content: none;
}
.legal {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 14px 0 rgba(19,58,90,0.08);
  margin-bottom: 60px;
}

/* --- ADDRESS & SOCIAL --- */
address {
  font-style: normal;
  color: #133A5A;
  font-size: 1rem;
  margin-bottom: 12px;
  line-height: 1.8;
  display: block;
}
address img {
  width: 18px;
  height: 18px;
  margin-right: 7px;
  margin-bottom: -3px;
  display: inline-block;
}
.social-media {
  display: flex;
  gap: 20px;
  align-items: center;
}
.social-media a img {
  width: 32px;
  height: 32px;
  opacity: 0.90;
  transition: opacity 0.2s;
}
.social-media a:hover img, .social-media a:focus img {
  opacity: 1;
}

/* --- FOOTER --- */
footer {
  background: linear-gradient(90deg, #133A5A 50%, #A1C299 100%);
  color: #fff;
  padding: 44px 0 0 0;
  font-family: 'Roboto', Arial, sans-serif;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 24px 0 0 0;
  justify-content: space-between;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: #fff;
  opacity: .92;
  padding: 4px 0;
  font-size: 1rem;
  transition: color .22s, opacity .18s;
}
footer nav a:hover, footer nav a:focus {
  color: #A1C299;
  opacity: 1;
}
footer address {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1rem;
}
footer .social-media a {
  margin-right: 4px;
}
footer img {
  height: 38px;
  width: auto;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}

/* --- MODALS, COOKIE BANNER --- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  background: #fff;
  color: #133A5A;
  width: 100vw;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -2px 16px rgba(19,58,90,0.10);
  padding: 24px 14px 18px 14px;
  gap: 18px;
  font-size: 1rem;
  animation: banner-in 0.45s ease;
}
@keyframes banner-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  gap: 19px;
}
.cookie-btn {
  background: #A1C299;
  color: #133A5A;
  border: none;
  padding: 10px 22px;
  border-radius: 7px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.cookie-btn.accept {
  background: #133A5A;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #174665;
  color: #fff;
}
.cookie-btn.reject {
  background: #F9F5EA;
  color: #133A5A;
  border: 1.5px solid #A1C299;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #A1C299;
  color: #fff;
}
.cookie-btn.settings {
  background: #A1C299;
  color: #133A5A;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #133A5A;
  color: #fff;
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(19, 58, 90, 0.54);
  z-index: 2200;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: modal-fade-in 0.35s;
}
@keyframes modal-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #133A5A;
  padding: 32px 26px
           22px 26px;
  border-radius: 13px;
  box-shadow: 0 6px 32px 0 rgba(19,58,90,0.16);
  min-width: 320px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modal-bounce 0.4s;
}
@keyframes modal-bounce {
  0% { transform: scale(0.75); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  margin-bottom: 14px;
  font-size: 1.2rem;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-option label {
  font-weight: 500;
  margin-left: 6px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-option input[type="checkbox"][disabled] {
  accent-color: #A1C299;
  background: #E3E3E3;
}
.cookie-modal .cookie-btns {
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
}

/* --- CONTACT & FORMS --- */
.contact-details, .contact-teaser, .contact {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 4px 16px 0 rgba(19,58,90,0.05);
  padding: 36px 24px;
}
.contact-details address, .contact-teaser h2 {
  font-size: 1.1rem;
}

/* --- THANK YOU PAGE --- */
.thank-you {
  margin: 64px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

/* --- RESPONSIVE UI --- */
@media (max-width: 1100px) {
  .feature-grid, .service-list, .usp-grid { flex-wrap: wrap; }
}
@media (max-width: 900px) {
  .feature-grid, .service-list, .usp-grid {
    flex-direction: column;
    gap: 20px;
  }
  .section, section {
    padding: 28px 6px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 30px 0 10px 0;
    background: linear-gradient(135deg, #A1C299 8%, #F9F5EA 100%);
  }
  .hero h1 { font-size: 1.4rem; }
  .feature-grid li, .usp-grid > div, .service-list > li {
    min-width: 0;
    padding: 16px 12px;
  }
  .section, section {
    margin-bottom: 42px;
    padding: 18px 4px;
  }
  .container { padding: 0 4px; }
  .content-wrapper {
    gap: 18px;
  }
  .testimonial-card {
    padding: 12px;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/* --- MISCELLANEOUS --- */
::-webkit-scrollbar {
  width: 10px;
  background: #F9F5EA;
}
::-webkit-scrollbar-thumb {
  background: #A1C299;
  border-radius: 8px;
}

/* --- UTILITY CLASSES --- */
.hide {
  display: none !important;
}
.visible {
  display: block !important;
}

/* --- ANIMATIONS --- */
.fade-in {
  animation: fade-in 0.35s;
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* --- END CSS --- */