/* CSS RESET & 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, 
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%;
  scroll-behavior: smooth;
  background: #F4F4F4;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #18191A;
  background: #F4F4F4;
  min-height: 100vh;
}

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

a {
  color: #1A2238;
  text-decoration: none;
  transition: color 0.2s;
  outline: none;
}
a:hover, a:focus {
  color: #21A179;
}

ul, ol {
  margin-left: 24px;
  margin-top: 8px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 10px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #1A2238;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #232323;
}
strong {
  font-weight: 700;
}

/* LAYOUT CONTAINERS & SECTIONS */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 28px rgba(30,30,30,0.09);
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
}

.card-container, .feature-grid, .testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}

.card {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(26,34,56,0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  min-width: 275px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(26,34,56,0.17);
  transform: translateY(-4px) scale(1.012);
  z-index: 2;
}

.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;
  margin-top: 32px;
  margin-bottom: 32px;
}

.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  min-width: 260px;
  max-width: 370px;
  background: #F4F4F4;
  border-left: 6px solid #1A2238;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(26,34,56,0.09);
  margin-bottom: 20px;
  transition: box-shadow 0.2s, border-color 0.25s;
}
.testimonial-card p {
  color: #232323;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.testimonial-card span {
  font-size: 0.92rem;
  color: #4A4A4A;
}
.testimonial-card:hover {
  border-left-color: #21A179;
  box-shadow: 0 6px 24px rgba(42, 56, 74, 0.10);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 24px 18px;
  background: #FEFEFE;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(22,30,44,0.07);
  transition: box-shadow 0.2s, border-color 0.23s;
  flex: 1 1 270px;
  min-width: 220px;
  margin-bottom: 20px;
  border-left: 4px solid #E1E1E1;
}
.feature-item:hover {
  box-shadow: 0 6px 22px rgba(20, 25, 33, 0.14);
  border-left:4px solid #1A2238;
  z-index: 1;
}
.feature-item img {
  width: 44px;
  height: 44px;
}
.feature-item h3 {
  color: #1A2238;
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.feature-item span {
  font-size: 0.86rem;
  color: #7B7B7B;
}

.feature-icons-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 24px;
}
.feature-icons-row img {
  width: 52px;
  filter: grayscale(1) contrast(1.2);
}

.cta-section {
  align-items: center;
  padding: 36px 24px;
  text-align: center;
  background: #1A2238;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(30,30,30,0.12);
  color: #fff;
  gap: 14px;
}
.cta-section h2 {
  color: #fff;
}
.cta-section p {
  color: #ececec;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #E1E3E8;
  position: relative;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 40px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #262B35;
  font-size: 1rem;
  letter-spacing: -0.01em;
  opacity: 0.93;
  padding: 4px 2px 4px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.20s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #21A179;
  border-bottom: 2px solid #21A179;
}

.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: #1A2238;
  color: #fff;
  padding: 12px 28px;
  border-radius: 26px;
  font-size: 1.09rem;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 14px rgba(34,44,64,0.05);
  transition: background 0.18s, color 0.19s, transform 0.15s;
  margin-left: 16px;
  border: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #21A179;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  outline: none;
}

.link-more {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #1A2238;
  border-bottom: 1.5px solid #1A2238;
  transition: color 0.17s, border-color 0.18s;
  font-size: 1rem;
  margin-top: 8px;
}
.link-more:hover {
  color: #21A179;
  border-bottom: 1.5px solid #21A179;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #1A2238;
  cursor: pointer;
  padding: 8px 12px;
  line-height: 1;
  transition: color 0.18s;
  z-index: 2030;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: #21A179;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  max-width: 330px;
  height: 100vh;
  background: #F4F4F4;
  box-shadow: -6px 0 36px rgba(10,36,44,0.18);
  padding: 32px 20px 20px 30px;
  z-index: 2050;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.77,0,.18,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #1A2238;
  position: absolute;
  top: 20px;
  right: 18px;
  cursor: pointer;
  z-index: 2099;
  padding: 6px;
  transition: color 0.17s;
}
.mobile-menu-close:hover {
  color: #21A179;
}
.mobile-nav {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.12rem;
  color: #1A2238;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 12px 0 10px 0;
  width: 100%;
  border-bottom: 1px solid #E1E1E1;
  transition: color 0.18s, background 0.19s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #21A179;
  background: #ececec;
  border-radius: 4px;
  outline: none;
}

/* HERO SECTION */
.hero {
  background: #1A2238;
  color: #fff;
  padding: 70px 0 60px 0;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 8px 52px rgba(30,34,56, 0.11);
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
  max-width: 600px;
}
.hero h1 {
  color: #fff;
  font-size: 2.7rem;
}
.hero p {
  color: #F4F4F4;
  font-size: 1.18rem;
}
.hero .cta-btn {
  background: #21A179;
  color: #fff;
  margin-top: 18px;
}
.hero .cta-btn:hover { background: #1A2238; color: #fff; }

/* CONTACT DETAILS & MAP */
.contact-details {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-top: 12px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.contact-details ul {
  min-width: 220px;
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
  font-size: 1rem;
  color: #232323;
}
.contact-details img {
  width: 24px;
  height: 24px;
}
.map-placeholder {
  background: #E7EAF0;
  border-radius: 14px;
  padding: 24px;
  flex: 1 1 300px;
  min-width: 180px;
  color: #1A2238;
}
.map-placeholder h3 {
  color: #1A2238;
}

/* FOOTER */
footer {
  background: #1A2238;
  color: #fff;
  padding: 40px 0 0 0;
  margin-top: 60px;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
}
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 250px;
}
.footer-left img {
  height: 38px;
  width: auto;
  margin-bottom: 8px;
}
.footer-left p {
  color: #c2c6d0;
  font-size: 0.99rem;
  line-height: 1.6;
  margin-bottom: 0px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.9;
  transition: color 0.17s;
}
.footer-nav a:hover { color: #21A179; }

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 3000;
  background: #f0f0f0;
  color: #191A1C;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  box-shadow: 0 -2px 24px rgba(40, 42, 60, 0.09);
  padding: 22px 24px;
  border-radius: 0;
  font-size: 1rem;
  transition: transform 0.4s;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn, .cookie-settings-btn {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 24px;
  padding: 10px 22px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.19s, color 0.16s, box-shadow 0.18s;
  margin-left: 0px;
  margin-right: 0px;
}
.cookie-btn.accept {
  background: #21A179;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #158661;
}
.cookie-btn.reject {
  background: #fff;
  color: #1A2238;
  border: 1px solid #ccc;
}
.cookie-btn.reject:hover {
  background: #ececec;
}
.cookie-settings-btn {
  background: #1A2238;
  color: #fff;
}
.cookie-settings-btn:hover {
  background: #232942;
}
/* Cookie modal popup */
.cookie-modal {
  position: fixed;
  z-index: 3500;
  left: 0; top: 0; right:0; bottom:0;
  background: rgba(10,10,18,0.44);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.18s;
}
.cookie-modal-content {
  background: #fff;
  color: #181A1C;
  border-radius: 16px;
  box-shadow: 0 8px 44px rgba(30,34,56,0.17);
  padding: 32px 30px 28px 30px;
  min-width: 340px;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  color: #1A2238;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal-close:hover { color: #21A179; }
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 600;
}
.cookie-category input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: #21A179;
  margin-right: 6px;
}
.cookie-category.essential label {
  color: #1A2238;
}
.cookie-category.essential input[type=checkbox] {
  accent-color: #A2A2A2;
}

.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 12px;
}

/* BUTTONS & INTERACTIONS */
button, .btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 22px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.16s, color 0.17s, box-shadow 0.14s;
  border: none;
  outline: none;
}
.btn {
  background: #1A2238;
  color: #fff;
  padding: 10px 22px;
}
.btn:hover, .btn:focus {
  background: #21A179;
  color: #fff;
}

/* GENERAL SPACING UTILITIES */
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }

/* FORMS */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #C8D1E2;
  background: #F7F7F8;
  margin-bottom: 15px;
  width: 100%;
  transition: border 0.17s, background 0.13s;
}
input:focus, textarea:focus, select:focus {
  border: 1px solid #21A179;
  background: #fff;
  outline: none;
}
label { font-weight: 600; }

/* VISUAL EFFECTS */
.card, .feature-item, .testimonial-card, .cookie-modal-content {
  box-shadow: 0 2px 12px rgba(20, 23, 28, 0.09);
}

/* SELECTION COLOR */
::selection {
  background: #232942;
  color: #fff;
}

/* MEDIA QUERIES: RESPONSIVE DESIGN */
@media (max-width: 1140px) {
  .container {
    max-width: 98vw;
    padding-left: 10px; padding-right: 10px;
  }
}

@media (max-width: 900px) {
  .main-nav { gap: 18px; }
  .hero h1 { font-size: 2.1rem; }
  .feature-grid, .testimonial-row { gap: 18px; }
}

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

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .hero {
    padding-top: 44px; padding-bottom: 36px;
    border-radius: 0 0 20px 20px;
  }
  .main-nav, .cta-btn { display: none; }
  .mobile-menu-toggle { display: inline-block; }
  .feature-grid, .testimonial-row, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-icons-row {
    flex-direction: row;
    gap: 16px;
    justify-content: flex-start;
  }
  .section {
    padding: 26px 6px;
    margin-bottom: 40px;
    border-radius: 12px;
  }
  .content-wrapper {
    padding: 0;
  }
  .cta-section {
    border-radius: 13px;
    padding: 20px 8px;
  }
  .contact-details {
    flex-direction: column;
    gap: 16px;
  }
  .map-placeholder {
    min-width: unset;
    padding: 16px;
    border-radius: 8px;
  }
  .footer-left {
    min-width: unset;
  }
  .testimonial-card, .feature-item {
    max-width: 100%;
    min-width: unset;
  }
  .cookie-modal-content { min-width: 98vw; padding-left:10px; padding-right:10px; }
}

@media (max-width: 540px) {
  .container { padding-left: 2vw; padding-right: 2vw; }
  .hero h1 { font-size: 1.22rem; }
  .footer-left p { font-size: 0.91rem; }
}

/* ANIMATION KEYFRAMES */
@keyframes menuSlideIn {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
@keyframes menuSlideOut {
  from { transform: translateX(0); }
  to   { transform: translateX(100%); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-menu.open {
  animation: menuSlideIn 0.34s cubic-bezier(.77,0,.18,1) forwards;
}
.mobile-menu {
  animation: menuSlideOut 0.28s cubic-bezier(.77,0,.18,1) forwards;
}

.cookie-banner {
  animation: fadeInUp 0.32s ease both;
}
/* Hide banner for accessibility when .hide applied */
.cookie-banner.hide { display: none; }

.cookie-modal { animation: fadeInUp 0.32s ease both; }

/* ACCESSIBLE FOCUS STATES */
a:focus, button:focus, .cta-btn:focus {
  outline: 2px solid #21A179;
  outline-offset: 2px;
}

/* CUSTOMIZATION END */