/* RESET & BASE TYPOGRAPHY */
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, font, 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  background: #fafcff;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #23313D;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #20508F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #52B1A4;
  outline: none;
}
ul, ol {
  padding-left: 1.2em;
}
strong, b {
  font-weight: bold;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
  color: #20508F;
}
h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, ul, ol {
  margin-bottom: 16px;
}
.subheadline {
  font-size: 1.125rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #4464A1;
  margin-bottom: 24px;
}

/* BRAND COLORS & PASTEL PALETTE */
:root {
  --primary: #20508F;
  --secondary: #F5F8FA;
  --accent: #0C223D;
  --pastel-blue: #e9f0fa;
  --pastel-mint: #e6f8f4;
  --pastel-pink: #fcf1fc;
  --pastel-yellow: #fffbe0;
  --pastel-purple: #f3eeff;
  --cta: #52b1a4;
  --cta-dark: #379485;
  --text-main: #23313D;
}

/* CONTAINER / LAYOUTS */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 16px 0 rgba(32, 80, 143, 0.08);
}

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

.section:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
  }
  .container {
    padding: 0 7px;
  }
}

/* HEADER & NAVIGATION */
header {
  background: linear-gradient(90deg, #e9f0fa 56%, #e6f8f4 100%);
  box-shadow: 0 2px 18px rgba(32,80,143,0.03);
  width: 100%;
  position: relative;
  z-index: 100;
}
header .container {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.logo img {
  height: 38px;
  margin-right: 5px;
}

/* MAIN NAVIGATION */
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #20508F;
  padding: 8px 14px;
  border-radius: 16px;
  transition: background 0.2s;
  font-weight: 500;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--pastel-blue);
  color: var(--accent);
}
.main-nav .cta-btn {
  background: var(--cta);
  color: #fff;
  font-weight: 600;
  margin-left: 12px;
  border: none;
  outline: none;
  box-shadow: 0 2px 6px 0 rgba(82,177,164,0.13);
  transition: background 0.15s, color 0.18s;
}
.main-nav .cta-btn:hover,
.main-nav .cta-btn:focus {
  background: var(--cta-dark);
  color: #fff;
}

/* BURGER MENU BUTTON (MOBILE) */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #20508F;
  cursor: pointer;
  margin-left: 15px;
  padding: 6px 14px;
  border-radius: 10px;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--pastel-blue);
  color: var(--primary);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(233,240,250,.97);
  box-shadow: 0 2px 26px 0 rgba(32,80,143,.19);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(.44,1.81,.34,1), opacity 0.18s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #20508F;
  margin: 18px 18px 12px 0;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #52b1a4;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.16rem;
  color: #23313D;
  background: none;
  padding: 12px 32px;
  border-radius: 18px;
  width: 100%;
  text-align: center;
  transition: background 0.17s, color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #dff5f0;
  color: #20508F;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 14px;
  }
}

@media (max-width: 992px) {
  .main-nav {
    gap: 7px;
  }
}

@media (max-width: 900px) {
  header .container {
    flex-wrap: wrap;
    gap: 13px;
  }
  .main-nav .cta-btn {
    margin-left: 4px;
  }
}

@media (max-width: 870px) {
  .main-nav {
    gap: 3px;
  }
}

/* HIDE MAIN NAV ON MOBILE */
@media (max-width: 820px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(115deg, var(--pastel-blue) 70%, var(--pastel-mint) 100%);
  min-height: 360px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  box-shadow: 0 2px 18px rgba(82,177,164,0.04);
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}
.hero .content-wrapper {
  gap: 18px;
  align-items: flex-start;
  max-width: 540px;
}
.hero h1 {
  color: #20508F;
  font-size: 2.5rem;
  letter-spacing: 0.01em;
}
.hero .subheadline {
  color: #379485;
}

@media (max-width: 768px) {
  .hero {
    min-height: 220px;
    margin-bottom: 40px;
    padding: 28px 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

/* CTA BUTTON */
.cta-btn {
  display: inline-block;
  background: var(--cta);
  color: #fff;
  border-radius: 30px;
  padding: 12px 36px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(52,177,164,0.13);
  transition: background 0.14s, transform 0.14s, box-shadow 0.15s;
  margin-top: 8px;
  outline: none;
}
.cta-btn:hover,
.cta-btn:focus {
  background: var(--cta-dark);
  color: #fff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 22px rgba(82,177,164,0.18);
}

/* SECTION STYLES */
.feature-grid,
.service-grid,
.plan-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-item, .service-item, .plan-block {
  flex: 1 1 220px;
  min-width: 230px;
  max-width: 320px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(32,80,143,0.06);
  padding: 28px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s, transform 0.14s;
  position: relative;
}
.feature-item:hover, .service-item:hover, .plan-block:hover {
  box-shadow: 0 8px 28px rgba(82,177,164,0.08);
  transform: translateY(-2px) scale(1.015);
}
.feature-item img, .service-item img, .plan-block img {
  height: 48px;
  margin-bottom: 8px;
}
.feature-item h3, .service-item h3, .plan-block h3 {
  font-size: 1.13rem;
  color: #379485;
}

@media (max-width: 930px) {
  .feature-grid, .service-grid, .plan-table {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  .feature-item, .service-item, .plan-block {
    flex: 1 1 310px;
    min-width: 205px;
  }
}

@media (max-width: 650px) {
  .feature-grid, .service-grid, .plan-table {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .feature-item, .service-item, .plan-block {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 22px 13px 18px 13px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 15px rgba(32,80,143,0.06);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 850px) {
  .content-grid {
    flex-direction: column;
    gap: 15px;
  }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* TESTIMONIALS */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 25px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #f3eeff;
  color: #1a1d22;
  border-radius: 22px;
  padding: 20px 25px 17px 25px;
  min-width: 250px;
  max-width: 350px;
  margin-right: 10px;
  transition: box-shadow 0.14s, transform 0.13s;
  box-shadow: 0 3px 15px rgba(32,80,143,0.06);
}
.testimonial-card p {
  color: #2d3650;
  font-size: 1.02rem;
  font-style: italic;
  margin-bottom: 7px;
}
.testimonial-meta {
  color: #20508F;
  font-weight: 600;
  font-size: 0.98rem;
  margin-top: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card:hover {
  box-shadow: 0 7px 28px rgba(82,177,164,0.10);
  transform: translateY(-2px) scale(1.025);
}
@media (max-width: 768px) {
  .testimonial-slider {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }
  .testimonial-card {
    max-width: 100%;
    width: 100%;
    margin: 0 auto 8px auto;
    padding: 17px 10px 13px 10px;
  }
}

.client-logos {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
}
.client-logos img {
  height: 32px;
  background: none;
  border-radius: 12px;
}

/* USP & FEATURE LISTS */
.usp-list, .feature-list {
  list-style: disc inside;
  padding-left: 20px;
  color: #379485;
  margin-bottom: 17px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.usp-list li, .feature-list li {
  margin-bottom: 11px;
  color: #20508F;
  font-weight: 500;
}

/* FOOTER */
footer {
  background: #f3eeff;
  padding: 30px 0 15px 0;
  letter-spacing: 0.01em;
  font-size: 0.97rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 25px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #379485;
  font-weight: 500;
  margin-bottom: 8px;
}
.footer-nav a:hover, .footer-nav a:focus {
  text-decoration: underline;
  color: #20508F;
}
.footer-contact {
  color: #35446d;
  font-size: 0.96rem;
  margin-bottom: 12px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #aaa;
  font-size: 0.98rem;
}
.footer-brand img {
  height: 32px;
}
@media (max-width: 980px) {
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(90deg, #e6f8f4 60%, #f3eeff 100%);
  border-radius: 26px;
  box-shadow: 0 2px 18px rgba(32,80,143,0.03);
  padding: 42px 20px;
  margin: 52px auto 0 auto;
}
.cta-section h2 {
  color: #20508F;
  font-size: 2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
}
.cta-text {
  font-size: 1.135rem;
  color: #379485;
  margin-bottom: 15px;
}
@media (max-width: 700px) {
  .cta-section { padding: 22px 8px; }
  .cta-section h2 { font-size: 1.35rem; }
}

/* CUSTOM ELEMENTS FOR VARIOUS PAGES */
.text-section {
  background: #f3eeff;
  border-radius: 16px;
  padding: 22px 16px 15px 16px;
  margin-bottom: 18px;
}
.contact-details p,
.contact-details a {
  font-size: 1rem;
  color: #20508F;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.contact-details img {
  margin-right: 7px;
  height: 20px;
}
.compliance-badges,
.trust-indicators {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 12px 0 0 0;
}
.compliance-badges img, .trust-indicators img {
  height: 36px;
}
.encryption-details ul {
  list-style: circle inside;
  color: #20508F;
}
.encryption-details h3 {
  margin-bottom: 8px;
  color: #379485;
}

.plan-table {
  margin-top: 18px;
}
.plan-block {
  border: 2px solid #e9f0fa;
  background: #e6f8f4;
  text-align: left;
  position: relative;
}
.plan-block h3 {
  color: #20508F;
  font-size: 1.28rem;
}
.plan-block ul {
  color: #23313D;
  font-size: 1rem;
  margin-bottom: 12px;
  list-style: disc inside;
}
.plan-block p {
  color: #379485;
  font-size: 1.08rem;
  font-weight: 600;
}
.plan-block .cta-btn {
  margin-top: 7px;
}

.feature-comparison ul {
  padding-left: 15px;
  color: #20508F;
}
.feature-comparison {
  background: #fcf1fc;
  border-radius: 14px;
  padding: 20px 15px;
  margin: 15px 0 20px 0;
  color: #20508F;
  font-size: 1rem;
}
.pricing-faq {
  background: #fffbe0;
  border-radius: 15px;
  padding: 18px 14px;
  margin: 10px 0 0 0;
  color: #20508F;
}

.faq-preview {
  background: #fffbe0;
  border-radius: 14px;
  padding: 15px 14px;
  margin-top: 16px;
}
.faq-preview h3 {
  color: #379485;
  margin-bottom: 6px;
}

.thank-you-message, .next-steps {
  background: #e6f8f4;
  border-radius: 12px;
  padding: 18px 14px;
  margin-bottom: 14px;
}
.next-steps ul {
  color: #20508F;
  font-size: 1rem;
}
.next-steps a {
  color: #379485;
  text-decoration: underline;
}
.next-steps a:hover {
  color: #20508F;
}

.data-processing-info,
.user-rights,
.cookie-info,
.management-instructions,
.user-choices,
.contact-info {
  background: #e9f0fa;
  border-radius: 10px;
  padding: 16px 12px;
  margin: 17px 0 10px 0;
  color: #20508F;
  font-size: 1rem;
}

/* COOKIE BANNER / MODAL */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fcf1fc;
  color: #20508F;
  box-shadow: 0 -2px 20px 0 rgba(32,80,143,0.11);
  z-index: 2000;
  padding: 22px 10px 18px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 1rem;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 12px;
}
.cookie-consent-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 18px;
  padding: 8px 18px;
  font-size: 1rem;
  margin: 0 2px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.15s, color 0.15s, box-shadow 0.12s;
  box-shadow: 0 2px 7px rgba(82,177,164,0.07);
}
.cookie-consent-banner .cookie-accept {
  background: var(--cta);
  color: #fff;
}
.cookie-consent-banner .cookie-accept:hover {
  background: var(--cta-dark);
}
.cookie-consent-banner .cookie-reject {
  background: #e9f0fa;
  color: #20508F;
}
.cookie-consent-banner .cookie-reject:hover {
  background: #e6f8f4;
}
.cookie-consent-banner .cookie-settings {
  background: #fffbe0;
  color: #20508F;
}
.cookie-consent-banner .cookie-settings:hover {
  background: #fff0b4;
}

.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(32,80,143, 0.17);
  z-index: 3100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.18s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  max-width: 400px;
  width: 96vw;
  box-shadow: 0 5px 40px rgba(32, 80, 143, 0.08);
  padding: 30px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: cookieModalIn 0.38s cubic-bezier(.68,-0.55,0.27,1.55);
}
@keyframes cookieModalIn {
  from {transform: translateY(80px) scale(0.9); opacity:0;}
  to   {transform: translateY(0) scale(1); opacity:1;}
}
.cookie-modal h2 {
  font-size: 1.16rem;
  color: #20508F;
  font-weight: 600;
  margin-bottom: 8px;
}
.cookie-category {
  flex: 1 1 60px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cookie-category label {
  font-size: 1re m;
  color: #20508F;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 20px;
  background: #e9f0fa;
  border-radius: 12px;
  position: relative;
  outline: none;
  margin-right: 7px;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(32,80,143,0.04);
  transition: background 0.13s;
}
.cookie-toggle:checked {
  background: #52b1a4;
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.16s, background 0.13s;
}
.cookie-toggle:checked::before {
  transform: translateX(16px);
  background: #dff5f0;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 7px;
  right: 13px;
  background: none;
  border: none;
  font-size: 1.55rem;
  color: #20508F;
  cursor: pointer;
  z-index: 12;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  color: #52b1a4;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 15px;
}
.cookie-modal .cookie-save {
  background: var(--cta);
  color: #fff;
  padding: 8px 18px;
  border-radius: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-modal .cookie-save:hover {
  background: var(--cta-dark);
}
@media (max-width: 530px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 9px;
    text-align: center;
    font-size: 0.98rem;
  }
  .cookie-modal {
    padding: 17px 7px 13px 7px;
    max-width: 96vw;
  }
}

/* MICRO-INTERACTIONS */
.feature-item, .service-item, .plan-block, .cta-btn, .testimonial-card, .cookie-consent-banner button, .mobile-menu-toggle, .mobile-nav a {
  transition: box-shadow 0.14s, background 0.13s, color 0.15s, transform 0.13s;
}

/* FOCUS OUTLINE FOR ACCESSIBILITY */
:focus {
  outline: 2px solid #52b1a4;
  outline-offset: 2px;
}

/* MIX-STYLE ADJUSTMENTS FOR PASTEL SOFT AESTHETIC */
.section, .card, .plan-block, .cta-section, .testimonial-card {
  box-shadow: 0 3px 16px rgba(32,80,143,0.07);
}
.feature-item, .service-item {
  background: #f5f8fa;
}

hr {
  border: none;
  border-top: 1px solid #e9f0fa;
  margin: 28px 0;
}

::-webkit-scrollbar {
  width: 8px;
  background: #e6f8f4;
}
::-webkit-scrollbar-thumb {
  background: #d0e6fa;
  border-radius: 8px;
}

/* General utility */
.mt-2 { margin-top: 2px; }
.mt-6 { margin-top: 6px; }
.mt-10 { margin-top: 10px; }

/* END OF CSS */
