/* =============================
   RESET & BASE STYLES
============================= */
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 {
  scroll-behavior: smooth;
  background: #181C21;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #181C21;
  color: #F2EBD3;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul, ol {
  margin-left: 1.5em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
a {
  color: #25A870;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.5,1.48,.52,.94);
}
a:hover, a:focus {
  color: #F2EBD3;
}

button, .cta-btn {
  font-family: 'Oswald', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 18px;
  padding: 12px 32px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #2C3B47 0%, #17527A 100%);
  color: #F2EBD3;
  box-shadow: 0 3px 12px rgba(23,82,122,0.15);
  letter-spacing: 0.04em;
  cursor: pointer;
  outline: none;
  transition: background 0.25s, transform 0.13s, box-shadow 0.17s;
  position: relative;
  margin: 8px 0;
}
.cta-btn:hover, button:hover, .cta-btn:focus, button:focus {
  background: #25A870;
  color: #181C21;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 18px rgba(37,168,112,0.13);
}

/* =============================
   TYPOGRAPHY
============================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  color: #F2EBD3;
  font-weight: bold;
  margin-bottom: 18px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
}

b, strong {
  color: #25A870;
  font-weight: bold;
}

/* =============================
   CONTAINER & LAYOUT STYLES
============================= */
.container {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

/* =============================
   FLEX-ONLY SPACING LAYOUTS
============================= */
.features-grid, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.features-grid > div, .card, .card-container > .card {
  background: #23262B;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(23,82,122,0.12);
  border: 1.5px solid #242C33;
  padding: 26px 28px 22px 28px;
  margin-bottom: 20px;
  min-width: 250px;
  flex: 1 1 270px;
  position: relative;
  transition: box-shadow 0.22s, background 0.22s, transform 0.13s;
}
.features-grid > div:hover {
  background: #181C21;
  box-shadow: 0 6px 22px 0 rgba(23,82,122,0.21);
  transform: translateY(-4px) scale(1.02);
  border-color: #25A870;
}
.card-container {
  gap: 24px;
  display: flex;
  flex-wrap: wrap;
}
.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;
  background: #F2EBD3;
  color: #181C21;
  padding: 20px;
  border-radius: 9px;
  box-shadow: 0 2px 10px rgba(23,82,122,0.08);
  margin-bottom: 20px;
  border-left: 4px solid #25A870;
  position: relative;
  min-width: 260px;
}
.testimonial-card span {
  font-style: italic;
  font-size: 0.95em;
  margin-left: 12px;
  color: #17527A;
  letter-spacing: 0.01em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 10px 0;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1.07em;
}
.legal-content {
  background: #23262B;
  padding: 32px 24px;
  border-radius: 10px;
  box-shadow: 0 1.5px 8px rgba(23,82,122,0.10);
  font-size: 1em;
  color: #F2EBD3;
}

/* =============================
   HERO & CTA SECTIONS
============================= */
.hero-section {
  background: linear-gradient(115deg,#23262B 0%,#181C21 100%); 
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 60px;
  border-bottom: 3px solid #242C33;
}
.hero-section h1, .hero-section p {
  color: #F2EBD3;
}
.hero-section h1 {
  text-shadow: 1.5px 2px 0 #17527A44;
  margin-bottom: 12px;
}
.hero-section p {
  margin-bottom: 24px;
  font-size: 1.2rem;
  max-width: 630px;
}

.cta-section {
  background: #23262B;
  border-top: 2px solid #17527A;
  border-radius: 14px;
  box-shadow: 0 1px 10px rgba(23,82,122,.12);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.cta-section h2{
  color: #25A870;
}

/* =============================
   NAVIGATION & HEADER
============================= */
header {
  background: #181C21;
  box-shadow: 0 2px 12px 0 rgba(26,34,41,0.17);
  padding: 17px 0 12px 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
.main-nav a{
  color: #F2EBD3;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color .19s;
  padding: 3px 6px;
  position: relative;
}
.main-nav a:after{
  content: '';
  display: block;
  height: 2px;
  width: 0%;
  background: #25A870;
  border-radius: 2px;
  transition: width .19s cubic-bezier(.61,.26,.34,.96);
  margin-top: 1px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #25A870;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 95%;
}

/* ========== MOBILE MENU ========== */
.mobile-menu-toggle {
  background: none;
  color: #25A870;
  border: none;
  font-size: 2.3rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  padding: 4px 13px;
  border-radius: 7px;
  transition: background .14s;
  z-index: 101;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #23262B;
  color: #F2EBD3;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #181C21;
  box-shadow: 2px 0 20px 0 rgba(37,168,112,0.20);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100vw);
  transition: transform .33s cubic-bezier(.76,1.34,.48,.98);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #25A870;
  background: none;
  border: none;
  margin: 24px 0 4px 24px;
  align-self: flex-start;
  cursor: pointer;
  padding: 0 8px;
  transition: color 0.13s;
  border-radius: 5px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F2EBD3;
  background: #23262B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 30px;
  width: 100%;
}
.mobile-nav a {
  color: #F2EBD3;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  padding: 10px 0;
  border-bottom: 1.5px solid #23262B;
  width: 100%;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background .13s;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: #25A87022;
  color: #25A870;
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none;
  }
}


/* ========== FOOTER ========== */
footer {
  background: #181C21;
  border-top: 2px solid #242C33;
  padding: 30px 0 0 0;
  color: #F2EBD3;
  font-size: 0.98rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 24px 40px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid #23262B;
}
footer .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #25A870;
  transition: color .12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  text-decoration: underline;
  color: #F2EBD3;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-contact img {
  margin-right: 9px;
  vertical-align: middle;
  width: 19px;
  height: 19px;
  filter: grayscale(0) contrast(90%) drop-shadow(0 1px 1.5px #23262B77);
}
.footer-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #23262B;
  padding: 6px;
  transition: background .14s;
}
.footer-social a:hover, .footer-social a:focus {
  background: #17527A;
}
.footer-social img {
  width: 26px;height: 26px;
  filter: grayscale(0) brightness(130%) drop-shadow(0 1px 2px #23262B44);
}
.footer-legal {
  color: #5A7086;
  font-size: 0.95em;
  margin-top: 18px;
  width: 100%;
  text-align: center;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}

/* ========== FAQ ==========
   (on .faq class inside .content-wrapper) */
.faq {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}
.faq h3 {
  color: #25A870;
  font-size: 1.13rem;
}
.faq p {
  color: #F2EBD3;
  font-size: 1rem;
  margin-bottom: 5px;
  border-left: 3px solid #25A870;
  padding-left: 8px;
}

/* =============================
   COOKIE CONSENT BANNER
============================= */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #23262B;
  color: #F2EBD3;
  padding: 18px 32px 16px 24px;
  box-shadow: 0 -2px 10px rgba(37,168,112,0.13);
  z-index: 3000;
  gap: 24px;
  border-top: 3px solid #25A870;
  font-size: 1rem;
  transition: transform 0.4s;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner__text {
  flex: 1 1 250px;
  max-width: 72vw;
  padding-right: 20px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
}
.cookie-banner button {
  font-size: 1rem;
  padding: 8px 19px;
  border-radius: 7px;
  background: #25A870;
  color: #181C21;
  border: none;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #17527A;
  color: #F2EBD3;
}
.cookie-banner__settings {
  background: transparent;
  color: #25A870;
  border: 1.5px solid #25A870;
  transition: background .13s, color .13s;
}
.cookie-banner__settings:hover, .cookie-banner__settings:focus {
  background: #25A870;
  color: #23262B;
}

/* Cookie Modal */
.cookie-modal-overlay {
  background: rgba(24, 28, 33, 0.93);
  position: fixed; z-index: 4000;left:0;top:0;
  width: 100vw; height: 100vh;
  display: flex;align-items: center;justify-content: center;
  transition: opacity 0.25s;
}
.cookie-modal {
  background: #23262B;
  color: #F2EBD3;
  border-radius: 13px;
  max-width: 92vw;
  width: 410px;
  padding: 34px 28px 28px 28px;
  box-shadow: 0 7px 46px rgba(23,82,122,0.27);
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.35rem;
  color: #25A870;
  margin-bottom: 12px;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid #181C21;
}
.cookie-category label {
  font-size: 1.02rem;
}
.cookie-toggle {
  width: 44px; height: 24px;
  background: #242C33;
  border-radius: 12px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  transition: background .15s;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle-slider {
  position: absolute; left: 2px; top: 2px;
  width: 20px; height: 20px;
  background: #25A870;
  border-radius: 50%;
  transition: transform .19s cubic-bezier(.52,1.55,.59,.96), background .12s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  transform: translateX(20px);
  background: #17527A;
}
.cookie-category--essential label {
  font-weight: bold;
  color: #17527A;
}
.cookie-category--essential .cookie-toggle {
  opacity: .6;
  pointer-events: none;
}
.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal__close {
  position: absolute;right: 19px;top: 15px;
  background: none; border: none; color: #25A870;
  font-size: 1.9rem;
  cursor: pointer;
  transition: color .12s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: #F2EBD3;
}

/* ========== THANK YOU PAGE ========== */
.thank-you-section {
  background: #23262B;
  border-radius: 12px;
  box-shadow: 0 1.5px 10px rgba(23,82,122,0.13);
  padding: 60px 22px 46px 22px;
  margin: 42px 0;
  min-height: 320px;
}

/* =============================
   MEDIA QUERIES (RESPONSIVE)
============================= */
@media (max-width: 900px) {
  .features-grid, .card-container, .content-grid {
    gap: 16px;
    flex-direction: column;
  }
  .features-grid > div, .card {
    min-width: unset;
    width: 100%;
    flex: 1 1 100%;
  }
}
@media (max-width: 768px) {
  .hero-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .cta-section {
    padding: 28px 10px;
  }
  .section,section {
    padding: 25px 10px;
    margin-bottom: 38px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start!important;
  }
}
@media (max-width: 600px) {
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .hero-section {
    padding-top: 21px;
    padding-bottom: 21px;
  }
  .section,section {
    padding: 16px 2px;
    margin-bottom: 28px;
  }
  .footer-social img {
    width: 23px; height: 23px;
  }
  .thank-you-section {
    padding: 24px 7px 24px 7px;
    margin: 16px 0;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 5px 10px 9px;
    gap: 11px;
    font-size: 0.96rem;
  }
  .cookie-banner__actions {
    gap: 8px;
  }
  .cookie-banner__text {
    max-width: 97vw;
    padding-right: 0;
  }
}

/* =============================
   FOCUS & ACCESSIBILITY
============================= */
:focus {
  outline: 2px solid #25A870;
  outline-offset: 2px;
}


/* =============================
   INDUSTRIAL MODERN DECORATIVE ELEMENTS
============================= */
/* Metallic accent line on cards/sections */
.features-grid > div, .testimonial-card, .cta-section, .thank-you-section, .legal-content {
  border-bottom: 2.5px solid #5A7086;
  box-shadow: 0 2px 8px #171b201a;
}
.features-grid > div:hover, .card:hover {
  border-bottom: 2.5px solid #25A870;
}

/* ========== ICONS AND ACCENTS ========== */
.features-grid > div img, .text-section ul li img, .footer-contact img {
  filter: grayscale(32%) contrast(145%) brightness(98%);
  margin-bottom: 8px;
  margin-right: 6px;
  vertical-align: middle;
}


/* ========== MICRO-INTERACTIONS ========== */
.card, .features-grid > div, .testimonial-card {
  transition: box-shadow 0.18s, border .15s, background .18s, color .13s, transform .18s;
}
.card:hover, .features-grid > div:hover, .testimonial-card:hover {
  box-shadow: 0 7px 26px 0 rgba(23,82,122,0.22);
  border-bottom: 2.5px solid #25A870;
}

.cta-btn::after {
  content: '';
  display: block;
  width: 0%;
  height: 4px;
  background: #25A870;
  border-radius: 3px;
  margin-top: 5px;
  transition: width .21s;
}
.cta-btn:hover::after, .cta-btn:focus::after {
  width: 66%;
}

/* ========== SPECIAL ============= */
.map-embed {
  background: #242C33;
  border-radius: 7px;
  padding: 14px 12px;
  margin-top: 10px;
  color: #25A870;
  font-size: 1.02em;
  box-shadow: 0 1px 4px 0 #17527A16;
}

/* =============================
   PRINT STYLES (optional)
============================= */
@media print {
  header, footer, .cookie-banner, .mobile-menu {
    display: none !important;
  }
  body {
    background: #fff;
    color: #181C21;
  }
}

/* =============================
   END OF STYLE.CSS
============================= */
