/*--------------------------------------
  CSS RESET & BASELINE NORMALIZATION
----------------------------------------*/
html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  line-height: 1.5;
  background: #F5F5F5;
  color: #212529;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  cursor: pointer;
  border: none;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #003366;
  margin-bottom: 12px;
  line-height: 1.1;
}
h1 {
  font-size: 2.75rem;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
p, li, address {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #212529;
}
strong {
  font-weight: 700;
  color: #003366;
}
em {
  color: #00AEEF; /* accent brand color */
}
hr {
  border: 0;
  border-top: 1.5px solid #D0D5DC;
  margin: 32px 0;
}

/*--------------------------------------
  LAYOUT CONTAINERS & SPACING
----------------------------------------*/
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 18px 0 rgba(0,32,64,.05);
}

/*-------- FLEXBOX LAYOUTS & GAPS --------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(0,32,64,.06);
  transition: box-shadow 0.22s;
  padding: 32px 24px;
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(0,32,64,.12);
}
.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: 18px;
  box-shadow: 0 2px 12px 0 rgba(0,32,64,.11);
  margin-bottom: 20px;
  min-width: 0;
  transition: box-shadow 0.22s, transform 0.15s;
  color: #212529;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px 0 rgba(0,174,239,.15);
  transform: translateY(-3px) scale(1.013);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*--------------------------------------
  HEADER, NAVIGATION & HERO
----------------------------------------*/
header {
  background: #003366;
  padding: 0;
  border-bottom: 4px solid #00AEEF;
  position: relative;
  z-index: 50;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0 14px 0;
}
.main-nav > a img {
  height: 46px;
  width: auto;
}
.main-nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav li {
  list-style: none;
}
.main-nav li a {
  display: inline-block;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: 0.04em;
  padding: 5px 2px;
  border-radius: 4px;
  transition: background .17s, color .17s;
}
.main-nav li a:hover, .main-nav li a:focus {
  background: #00AEEF;
  color: #003366;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  background: #00AEEF;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  border-radius: 24px;
  box-shadow: 0 2px 10px 0 rgba(0,32,64,.07);
  padding: 11px 32px;
  margin-left: 24px;
  letter-spacing: 0.03em;
  transition: background 0.21s, color 0.21s, box-shadow 0.18s, transform 0.12s;
  border: none;
  cursor: pointer;
  outline: none;
  text-transform: uppercase;
}
.cta-btn:hover, .cta-btn:focus {
  background: #fff;
  color: #003366;
  box-shadow: 0 5px 32px 0 rgba(0,32,64,.12), 0 1.5px 0 #00AEEF inset;
  transform: translateY(-2px) scale(1.035);
}


/*---------- HERO SECTION -----------*/
.hero, .support-hero {
  background: linear-gradient(120deg, #00AEEF 0%, #003366 100%);
  color: #fff;
  padding: 54px 0 44px 0;
  border-radius: 0 0 40px 40px;
  margin-bottom: 32px;
}
.hero h1, .support-hero h1 {
  color: #fff;
}
.hero p, .support-hero p {
  color: #F5F5F5;
  max-width: 560px;
  font-size: 1.18rem;
  margin-bottom: 24px;
}
.hero .cta-btn, .support-hero .cta-btn {
  background: #fff;
  color: #00AEEF;
  margin-top: 16px;
  font-weight: 800;
  text-shadow: none;
  border: 2px solid #00AEEF;
}
.hero .cta-btn:hover, .support-hero .cta-btn:hover {
  background: #003366;
  color: #fff;
  border-color: #003366;
}

/*----------- MOBILE NAVIGATION ---------*/
.mobile-menu-toggle {
  display: none;
  background: #00AEEF;
  color: #fff;
  border-radius: 8px;
  font-size: 2rem;
  padding: 6px 18px 4px 18px;
  align-items: center;
  margin-left: 10px;
  z-index: 120;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #0075A7;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #003366;
  color: #fff;
  z-index: 105;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.42,.2,.45,1.07);
  padding: 38px 0 0 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #00AEEF;
  color: #fff;
  font-size: 2.4rem;
  border-radius: 10px;
  margin: 12px 22px 16px 0;
  padding: 0 14px;
  transition: background 0.16s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #F5F5F5;
  color: #003366;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
  margin-top: 16px;
  align-items: flex-start;
  padding-left: 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.22rem;
  color: #fff;
  padding: 18px 0 10px 0;
  border-radius: 4px;
  letter-spacing: .06em;
  width: 90%;
  transition: background .16s, color .16s, padding-left .19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #00AEEF;
  color: #003366;
  padding-left: 8px;
}


/*--------------------------------------
  SECTIONS & ELEMENTS
----------------------------------------*/
.features {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features h2 {
  color: #00AEEF;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(0,32,64,.08);
  padding: 28px 20px 22px 20px;
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-top: 4px solid #00AEEF;
  transition: box-shadow .16s, border-color .2s, transform .12s;
}
.feature-grid li:hover {
  box-shadow: 0 6px 32px 0 rgba(0,174,239,.09);
  border-top: 4px solid #003366;
  transform: translateY(-2px);
}
.feature-grid img {
  width: 48px;
  height: 48px;
}

/* SERVICES OVERVIEW */
.services-overview, .services {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
}
.service-list, .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-list li, .service-cards li {
  background: #F5F5F5;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(0,32,64,.06);
  flex: 1 1 270px;
  min-width: 210px;
  padding: 30px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  transition: box-shadow .19s, background .19s;
}
.service-list li:hover, .service-cards li:hover {
  box-shadow: 0 8px 28px 0 rgba(0,32,64,.11);
  background: #00AEEF;
  color: #fff;
}
.service-list strong, .service-cards strong {
  color: #003366;
}
.service-list li:hover strong,
.service-cards li:hover strong {
  color: #fff;
}

/* CTA BANNER */
.cta-banner {
  margin-bottom: 48px;
  background: #00AEEF;
  color: #fff;
  border-radius: 20px;
  padding: 36px 20px;
  box-shadow: 0 3px 24px 0 rgba(0,174,239,.14);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-banner .cta-btn {
  background: #fff;
  color: #00AEEF;
  border: 2px solid #fff;
  margin-top: 18px;
  font-weight: 800;
  text-shadow: none;
}
.cta-banner .cta-btn:hover {
  background: #003366;
  color: #fff;
  border-color: #003366;
}

/* TESTIMONIALS */
.testimonials {
  margin-bottom: 60px;
}
.testimonials h2 {
  color: #00AEEF;
}
.testimonials .testimonial-card {
  font-size: 1.09rem;
  color: #212529;
  background: #fff;
}
.testimonials .testimonial-card span strong {
  color: #003366;
}
.testimonials .testimonial-card span {
  margin-left: auto;
  font-weight: 700;
  color: #003366;
  font-size: 1.03rem;
}

/* COMPARISON TABLE */
.comparison-table {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(0,32,64,.07);
  overflow-x: auto;
  margin: 24px 0 0 0;
  padding: 16px 0 10px 0;
}
.comparison-table h3 {
  color: #003366;
  margin-bottom: 10px;
  font-size: 1.125rem;
}
.comparison-table table {
  min-width: 350px;
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}
.comparison-table th, .comparison-table td {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 6px;
  border-bottom: 1.5px solid #F5F5F5;
  text-align: left;
}
.comparison-table th {
  color: #00AEEF;
  font-weight: 700;
  background: #EFF9FE;
}
.comparison-table tr:last-child td {
  border-bottom: none;
}

/* FAQ, TEXT SECTION & LISTS */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 700px;
}
.text-section ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 10px;
}
.text-section li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.04rem;
}
.text-section li img {
  width: 32px;
  height: 32px;
}
.text-section a {
  color: #00AEEF;
  text-decoration: underline;
  transition: color .16s;
}
.text-section a:hover, .text-section a:focus {
  color: #003366;
  text-decoration: underline;
}


/* ABOUT, VALUES, TEAM */
.about, .values, .team, .benefits, .solutions, .faq, .info, .privacy-policy, .gdpr, .cookies-policy, .terms-of-use, .thank-you, .contact, .troubleshooting {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
}

.benefits ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.benefits li {
  background: #F5F5F5;
  border-radius: 16px;
  padding: 24px 20px 20px 20px;
  flex: 1 1 250px;
  min-width: 210px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  box-shadow: 0 2px 8px 0 rgba(0,32,64,.07);
  transition: box-shadow .17s;
}
.benefits li:hover {
  box-shadow: 0 6px 28px 0 rgba(0,174,239,.15);
}
.benefits img {
  width: 38px;
  height: 38px;
}

/* MAP LOCATION (Contacts) */
.map-location {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 0 0;
  font-weight: 700;
  color: #003366;
}
.map-location img {
  width: 32px !important;
  height: 32px !important;
}

/* FOOTER */
footer {
  background: #003366;
  color: #fff;
  padding: 38px 0 24px 0;
  margin-top: 48px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}
.footer-brand img {
  height: 34px;
  width: auto;
}
.footer-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
}
.footer-nav a {
  color: #00AEEF;
  text-decoration: underline;
  transition: color .18s, text-decoration .18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
footer address {
  font-style: normal;
  font-size: 1rem;
  color: #F5F5F5;
  margin-top: 8px;
}

/*--------------------------------------
  RESPONSIVE DESIGN
----------------------------------------*/
@media (max-width: 1200px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 950px) {
  .main-nav ul {
    gap: 14px;
  }
  .footer-nav {
    gap: 18px;
  }
  .feature-grid, .service-list, .benefits ul {
    gap: 12px;
  }
}
@media (max-width: 820px) {
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  .section, .hero, .about, .values, .team, .benefits, .solutions, .faq, .info, .privacy-policy, .gdpr, .cookies-policy, .terms-of-use, .thank-you, .contact {
    padding: 24px 10px;
  }
  .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .main-nav ul,
  .main-nav .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    right: 26px;
    top: 16px;
  }
  .footer-brand img {
    height: 26px;
  }
  .footer-nav {
    flex-wrap: wrap;
    gap: 12px;
  }
  .container {
    padding: 0 6vw;
  }
  .hero, .support-hero {
    border-radius: 0 0 32px 32px;
    padding: 36px 0 30px 0;
  }
  .testimonials .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .feature-grid, .service-list, .service-cards, .benefits ul {
    flex-direction: column;
    gap: 16px;
  }
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 550px) {
  h1 {
    font-size: 1.32rem;
    margin-bottom: 13px;
  }
  h2 {
    font-size: 1.06rem;
    margin-bottom: 9px;
  }
  .container {
    padding: 0 2vw;
  }
  .card, .service-list li, .feature-grid li, .benefits li {
    padding: 18px 10px 16px 10px;
    min-width: 0;
  }
  .section, .about, .values, .team, .benefits, .solutions, .faq, .info, .privacy-policy, .gdpr, .cookies-policy, .terms-of-use, .thank-you, .contact {
    padding: 14px 2vw;
    border-radius: 11px;
  }
  .footer-brand img {
    height: 19px;
  }
}

/*--------------------------------------
  ANIMATION & MICRO-INTERACTIONS
----------------------------------------*/
.card, .feature-grid li, .service-list li, .testimonial-card, .benefits li {
  transition: box-shadow .21s, border-color .19s, background .14s, color .14s, transform .1s;
}
.cta-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background .18s, color .18s, box-shadow .15s, transform .13s;
}

/*--------------------------------------
  COOKIE CONSENT BANNER & MODAL
----------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #003366;
  color: #fff;
  padding: 18px 16px 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1200;
  box-shadow: 0 -2px 24px 0 rgba(0,32,64,.18);
  font-size: 1rem;
  gap: 18px;
  animation: cookie-slide-in 0.55s ease both;
}
@keyframes cookie-slide-in {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-banner p {
  margin-bottom: 0;
  color: #fff;
  max-width: 680px;
  text-align: center;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 16px;
  margin-top: 4px;
}
.cookie-btn {
  padding: 8px 22px;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  margin: 0 0 0 0;
  letter-spacing: 0.04em;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 0px 4px 0 rgba(0,32,64,.06);
  transition: background .19s, color .19s, box-shadow .17s, transform .12s;
}
.cookie-accept {
  background: #00AEEF;
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #fff;
  color: #003366;
}
.cookie-reject {
  background: #fff;
  color: #003366;
  border: 1.5px solid #00AEEF;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #00AEEF;
  color: #fff;
}
.cookie-settings {
  background: #F5F5F5;
  color: #003366;
  border: 1.5px solid #003366;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #003366;
  color: #fff;
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1300;
  background: rgba(0, 51, 102, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-fade-in 0.22s both;
}
@keyframes modal-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #003366;
  border-radius: 26px;
  box-shadow: 0 3px 42px 0 rgba(0,32,64,.19);
  width: 93vw;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 36px 32px 30px 32px;
  position: relative;
  animation: modal-pop-in 0.24s cubic-bezier(.4,1.8,.4,1) both;
}
@keyframes modal-pop-in {
  from { transform: scale(.93); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: #00AEEF;
  font-size: 1.22rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin: 16px 0 0 0;
  padding: 10px 0;
  border-bottom: 1.5px solid #F5F5F5;
}
.cookie-modal .cookie-toggle-label {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #003366;
  font-weight: 700;
}
.cookie-modal .cookie-toggle-switch {
  margin-left: auto;
}
.cookie-modal .cookie-modal-footer {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 17px;
  right: 17px;
  background: #F5F5F5;
  color: #003366;
  font-size: 1.6rem;
  border-radius: 12px;
  border: none;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .14s, color .14s;
}
.cookie-modal .cookie-close:hover, .cookie-modal .cookie-close:focus {
  background: #00AEEF;
  color: #fff;
}

/* Toggle switches (checkbox-style) for cookies */
.cookie-toggle-switch {
  width: 44px;
  height: 24px;
  border-radius: 16px;
  background: #F5F5F5;
  position: relative;
  appearance: none;
  outline: none;
  transition: background 0.12s;
  cursor: pointer;
}
.cookie-toggle-switch:checked {
  background: #00AEEF;
}
.cookie-toggle-switch:before {
  content: '';
  display: block;
  position: absolute;
  top: 2px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0,32,64,.13);
  transition: left .16s;
}
.cookie-toggle-switch:checked:before {
  left: 21px;
}


/*--------------------------------------
  UTILITY CLASSES, HELPER MARGINS
----------------------------------------*/
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 20px !important; }
.mt-2 { margin-top: 20px !important; }
.mt-3 { margin-top: 36px !important; }
.align-center { align-items: center !important; }
.text-center { text-align: center !important; }
.display-block { display: block !important; }


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