/* ===== 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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #10171E;
  color: #F5F7FA;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.03em;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: #3EB1C8;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F5F7FA;
}
ul, ol {
  list-style: none;
}

/* ===== Brand Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #F5F7FA;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-weight: 600;
}
strong {
  color: #3EB1C8;
  font-weight: 700;
}

p, ul li, ol li, blockquote, cite {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #E6EAF0;
  margin-bottom: 16px;
  line-height: 1.6;
}
blockquote {
  padding-left: 16px;
  border-left: 3px solid #3EB1C8;
  font-style: italic;
  color: #134063;
  background: #F5F7FA;
  border-radius: 8px 0 0 8px;
}
cite {
  display: block;
  font-size: 0.97rem;
  color: #222C38;
  margin-top: 8px;
  font-style: normal;
  opacity: 0.85;
}

.text-section em, .text-section i { color: #3EB1C8; font-style: italic; }

/* ===== Layout Containers & Flex Patterns ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section,
.about,
.features,
.services,
.testimonials,
.hero,
.contact,
.contact-details {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(19,64,99,0.85);
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(12,20,30,0.22), 0 1.5px 6px 0 #181b1f44;
}
.section:last-child {
  margin-bottom: 0;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #222C38;
  border: 1.5px solid #3EB1C8;
  border-radius: 14px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2px 8px 0 rgba(30, 40, 50, 0.22);
  transition: transform 0.16s, box-shadow 0.16s;
}
.card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 8px 32px 0 rgba(62,177,200,0.15), 0 2px 8px 0 #181b1f33;
  border-color: #F5F7FA;
}
.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: #F5F7FA;
  color: #222C38;
  border-radius: 12px;
  box-shadow: 0 1.5px 6px rgba(30,40,50,0.11);
  min-width: 220px;
  max-width: 500px;
  margin-bottom: 20px;
  flex: 1 1 280px;
  border-left: 4px solid #3EB1C8;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 16px 0 rgba(62,177,200,0.17), 0 3px 20px 0 #13406318;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.feature {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  background: #222C38;
  border-radius: 10px;
  box-shadow: 0 1px 8px 0 rgba(19,62,90,0.11);
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border: 1.5px solid #253953;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, border 0.16s;
}
.feature img {
  max-width: 48px;
  min-width: 36px;
  min-height: 36px;
  margin-bottom: 10px;
  filter: grayscale(0.2) brightness(1.15) drop-shadow(0 2px 4px #13406355);
}
.feature:hover {
  border: 1.5px solid #3EB1C8;
  box-shadow: 0 6px 24px 0 rgba(62, 177, 200, 0.08);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-bottom: 10px;
}
.company-details {
  font-size: 0.97rem;
  color: #9BB2C6;
}

/* ===== Header & Navigation ===== */
header {
  background: #10171E;
  width: 100%;
  z-index: 90;
  box-shadow: 0 2px 12px 0 #232e3a18;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}
nav a img {
  height: 42px;
  width: auto;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
nav ul li {
  list-style: none;
}
nav ul li a {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 500;
  color: #F5F7FA;
  padding: 8px 10px;
  border-radius: 7px;
  transition: background 0.16s, color 0.18s;
}
nav ul li a:hover, nav ul li a:focus {
  background: #253953;
  color: #3EB1C8;
}
.cta-button {
  display: inline-block;
  background: linear-gradient(92deg, #3EB1C8 60%, #134063 100%);
  color: #10171E;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 700;
  letter-spacing: 0.025em;
  font-size: 1.13rem;
  padding: 13px 30px;
  border-radius: 7px;
  margin-left: 18px;
  box-shadow: 0 2px 8px 0 #13406322;
  border: none;
  text-align: center;
  transition: background 0.18s, color 0.18s, box-shadow 0.17s;
  cursor: pointer;
  outline: none;
  position: relative;
}
.cta-button:hover, .cta-button:focus {
  background: #F5F7FA;
  color: #134063;
  box-shadow: 0 4px 14px 0 #3EB1C822;
}

/* Hamburger Mobile Nav */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 26px;
  right: 26px;
  z-index: 201;
  font-size: 2.2rem;
  color: #3EB1C8;
  background: #192637;
  border: none;
  border-radius: 50%;
  padding: 9px 13px;
  cursor: pointer;
  box-shadow: 0 3px 12px 0 #0a181e45;
  transition: background 0.16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #253953;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(19, 64, 99, 0.97);
  z-index: 300;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(0.79,0.21,0.38,1.08);
  box-shadow: 3px 0 18px 0 #181b1f55;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #F5F7FA;
  border: none;
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 14px 22px 0 0;
  cursor: pointer;
  z-index: 311;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #3EB1C8;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 36px 30px;
  width: 100%;
  margin-top: 12px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #F5F7FA;
  padding: 14px 0 10px 0;
  border-radius: 4px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  transition: background 0.15s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #253953;
  color: #3EB1C8;
}

@media (max-width: 1150px) {
  .container {
    max-width: 98vw;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 900px) {
  nav ul {
    gap: 10px;
  }
  .hero h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
}
@media (max-width: 850px) {
  nav .cta-button { display: none; }
}
@media (max-width: 820px) {
  nav ul { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (max-width: 640px) {
  .footer-links { flex-direction: column; gap: 10px; }
}

/* ===== MAIN - Hero ===== */
.hero {
  margin-bottom: 60px;
  padding: 64px 20px 48px 20px;
  background: #134063;
  box-shadow: 0 9px 42px 0 #10171E38;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  min-height: 240px;
}
.hero h1, .hero p {
  color: #F5F7FA;
}
.hero .cta-button {
  margin-top: 30px;
  background: linear-gradient(90deg, #3EB1C8 60%, #134063 100%);
  color: #232e3a;
}
.hero .cta-button:hover {
  background: #F5F7FA;
  color: #134063;
}

/* ===== Features & SERVICES ===== */
.features {
  margin-bottom: 60px;
  background: #10171E;
  box-shadow: 0 2px 12px 0 #1e405550;
}
.features .content-wrapper, .services .content-wrapper {
  gap: 24px;
}

.services {
  margin-bottom: 60px;
  background: #253953;
  color: #F5F7FA;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 #25395326;
}
.services h2, .services h3, .services h4 {
  color: #3EB1C8;
}
.services ul, .services ol {
  margin-left: 18px;
}
.services ul li, .services ol li { color: #E6EAF0; margin-bottom: 10px; }
.services strong { color: #3EB1C8; font-weight: 700; }

/* ===== About Section, GDPR, Cookies, Privacy, Terms ===== */
.about, .cookies-policy, .privacy-policy, .gdpr, .terms-of-use, .contact-details {
  background: #192637;
  border: 1.5px solid #222C38;
  box-shadow: 0 1.5px 18px 0 #25395320;
  border-radius: 16px;
  color: #F5F7FA;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.about h1, .privacy-policy h1, .gdpr h1, .terms-of-use h1, .cookies-policy h1 { color: #3EB1C8; }
.text-section h2, .text-section h3, .text-section h4 { color: #3EB1C8; margin-top: 18px; }

.text-section {
  padding-left: 0;
  border-left: none;
  background: none;
  color: #E6EAF0;
}
.text-section p, .text-section ul li, .text-section ol li { color: #E6EAF0; }

/* ===== CONTACT BLOCK ===== */
.contact, .contact-details {
  background: #134063;
  color: #F5F7FA;
  border-radius: 18px;
  margin-bottom: 60px;
  box-shadow: 0 2px 12px 0 #3EB1C827;
}
.contact a.cta-button {
  margin-top: 15px;
}
.contact-details .text-section { margin-top: 18px; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: #253953;
  border: 1.5px solid #134063;
  border-radius: 18px;
  box-shadow: 0 1.5px 14px 0 #3eb1c822;
  margin-bottom: 60px;
  color: #F5F7FA;
}
.testimonials .content-wrapper {
  flex-wrap: wrap;
  gap: 24px;
}
.testimonials h2 {
  color: #3EB1C8;
}
.text-section {
  margin-top: 18px;
}

/* ===== FOOTER ===== */
footer {
  margin-top: 50px;
  padding: 24px 0;
  background: #10171E;
  color: #97b2c4;
  border-top: 1.5px solid #222C38;
}
footer .content-wrapper {
  flex-direction: column;
  align-items: flex-start;
}
.footer-links a {
  font-size: 1rem;
  color: #3EB1C8;
  margin-right: 12px;
  font-weight: 500;
}
.footer-links a:hover, .footer-links a:focus {
  color: #F5F7FA;
  text-decoration: underline;
}

/* ===== Cookie Consent Banner & Modal ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #222C38;
  color: #F5F7FA;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px 16px;
  z-index: 800;
  box-shadow: 0 -2px 20px 0 #13406325;
  transition: transform 0.32s cubic-bezier(0.88,0.01,0.31,1.03);
  font-size: 1rem;
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner__buttons {
  display: flex;
  gap: 16px;
}
.cookie-banner button {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  background: #3EB1C8;
  color: #10171E;
  border: none;
  padding: 10px 22px;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.17s, color 0.15s, box-shadow 0.14s;
  margin-right: 4px;
  outline: none;
  box-shadow: 0 1px 4px 0 #13406322;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #F5F7FA;
  color: #134063;
  box-shadow: 0 2px 8px 0 #3EB1C822;
}
.cookie-banner .cookie-settings {
  background: #134063;
  color: #F5F7FA;
  border: 1.3px solid #3EB1C8;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #3EB1C8;
  color: #10171E;
}

.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(19,64,99,0.86);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.23s;
}
.cookie-modal {
  background: #F5F7FA;
  color: #10171E;
  box-shadow: 0 4px 40px 0 #1340631a;
  border-radius: 14px;
  max-width: 420px;
  width: 95vw;
  padding: 36px 28px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
  animation: cookie-modal-slide 0.5s cubic-bezier(0.87,0.15,0.24,1.12);
}
@keyframes cookie-modal-slide {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: #134063;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-modal label {
  font-size: 1rem;
  color: #253953;
  font-weight: 500;
}
.cookie-modal input[type='checkbox'] {
  margin-right: 8px;
  accent-color: #3EB1C8;
  width: 18px;
  height: 18px;
}
.cookie-modal .cookie-essential {
  color: #134063;
  font-weight: 600;
}
.cookie-modal__buttons {
  display: flex;
  gap: 18px;
  margin-top: 12px;
}
.cookie-modal__close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  color: #134063;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.8;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  opacity: 1;
  color: #3EB1C8;
}
.cookie-modal__category-desc {
  font-size: 0.95rem;
  color: #444d59;
  margin-bottom: 10px;
  line-height: 1.45;
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
  width: 10px;
  background: #222C38;
}
::-webkit-scrollbar-thumb {
  background: #3EB1C8;
  border-radius: 8px;
  border: 2.5px solid #253953;
}

/* ===== Animation & Micro-interactions ===== */
.card, .feature, .testimonial-card, .cta-button, .cookie-banner button, .cookie-modal__buttons button {
  transition-property: box-shadow, background, border-color, color, transform, filter;
  transition-duration: 0.15s, 0.16s, 0.16s, 0.21s, 0.18s, 0.12s;
  transition-timing-function: cubic-bezier(0.71,0.3,0.42,1), ease, ease;
}

/* ===== Responsive Patterns (Mobile-First) ===== */
@media (max-width: 768px) {
  .section,
  .about,
  .features,
  .services,
  .testimonials,
  .hero,
  .contact,
  .contact-details {
    margin-bottom: 40px;
    padding: 28px 8px;
    border-radius: 10px;
  }
  .hero {
    padding: 38px 8px 24px 8px;
    border-radius: 16px;
    min-height: 150px;
  }
  .hero h1,
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.08rem; }
  .feature-grid,
  .content-grid,
  .card-container,
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  .feature, .card, .testimonial-card {
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-links {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 7px;
  }
  .mobile-menu {
    padding-top: 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 4px;
    padding-right: 4px;
  }
  .hero h1 { font-size: 1.1rem; }
  .cta-button { font-size: 1rem; padding: 10px 13px; }
  .cookie-modal { padding: 22px 6px 18px 10px; }
}

/* ===== Utility Classes ===== */
.hide { display: none !important; }

/* =========== END OF CSS =========== */
