/* ========== CSS Reset & Normalize ========== */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #F7F7FA;
  color: #222235;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg {
  max-width: 100%;
  display: block;
  height: auto;
  border: 0;
}
a {
  color: #093C61;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #51A2C1;
  outline: none;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  width: 100%;
  background: white;
  border-radius: 16px;
  overflow: hidden;
}
th, td {
  font-size: 16px;
  padding: 14px 12px;
  text-align: left;
}
th {
  background: #F6F1FF;
  color: #093C61;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
}
td {
  border-bottom: 1px solid #ECE8F7;
}
tr:last-child td {
  border-bottom: none;
}
caption {
  caption-side: top;
  font-size: 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #093C61;
  font-weight: 500;
  padding: 20px 0 10px;
}

/* ========== Brand Colors & Pastel Palette ========== */
:root {
  --color-primary: #093C61;
  --color-secondary: #E0E6EB;
  --color-accent: #F2BC3B;
  --color-pastel-blue: #D9EAF7;
  --color-pastel-coral: #FFEDEF;
  --color-pastel-purple: #EEE7FB;
  --color-pastel-mint: #DBF5E2;
  --color-pastel-yellow: #FFF8DC;
  --color-white: #fff;
  --color-grey: #F6F1FF;
  --color-shadow: rgba(22,28,73,0.07);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* ========== Typography ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: #093C61;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, ul, ol, li, table, .text-section {
  font-family: var(--font-body);
  color: #303549;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
strong {
  font-weight: 700;
  color: #093C61;
}
.text-section {
  margin-bottom: 16px;
}

/* ========== Containers & Layouts ========== */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-white);
  border-radius: 32px;
  box-shadow: 0 6px 32px var(--color-shadow);
}
@media (max-width: 1024px) {
  .container {
    max-width: 94vw;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 32px;
    border-radius: 24px;
  }
}
.content-wrapper {
  margin: 0 auto 0 auto;
  padding: 0 0 0 0;
  max-width: 860px;
}

/* ========== Main Navigation & Header ========== */
header {
  width: 100%;
  background: linear-gradient(90deg, #D9EAF7 0%, #EEE7FB 100%);
  box-shadow: 0 2px 12px var(--color-shadow);
  padding: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}
header img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #093C61;
  font-weight: 500;
  background: transparent;
  padding: 7px 14px;
  border-radius: 12px;
  transition: background 0.17s, color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #D9EAF7;
  color: #51A2C1;
}
.main-nav .cta-primary {
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 16px;
  padding: 9px 22px;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(255,192,27,0.09);
  transition: background 0.16s, color 0.15s, box-shadow 0.2s;
  margin-left: 18px;
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: #ffe49e;
  color: #093C61;
  box-shadow: 0 4px 20px rgba(255,192,59,0.13);
}

/* Mobile nav button */
.mobile-menu-toggle {
  display: none;
  background: var(--color-primary);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 16px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1010;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #287fb6;
}

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

/* ========== Mobile Menu Overlay ========== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(104deg, #DBF5E2 25%, #EEE7FB 80%);
  transform: translateX(100vw);
  transition: transform 0.35s cubic-bezier(.63,.13,.39,.91);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 40px 28px 24px 28px;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 24px;
  font-size: 2rem;
  align-self: flex-end;
  padding: 2px 20px;
  margin-bottom: 18px;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #287fb6;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  padding-top: 20px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #093C61;
  font-weight: 500;
  border-radius: 16px;
  padding: 16px 8px 16px 8px;
  background: transparent;
  transition: background 0.18s, color 0.15s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #D9EAF7;
  color: #51A2C1;
}
@media (max-width: 480px) {
  .mobile-menu {
    padding: 32px 9px 14px 9px;
  }
  .mobile-nav a {
    font-size: 1.05rem;
    padding: 13px 2px 13px 2px;
  }
}


/* ========== Sections ========== */
section {
  margin-bottom: 60px;
}
.section:last-child, section:last-child {
  margin-bottom: 0;
}

/* ========== Flexbox Layout Patterns ========== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-white);
  box-shadow: 0 2px 12px var(--color-shadow);
  border-radius: 18px;
  padding: 28px 18px;
  transition: box-shadow 0.23s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 10px 44px rgba(25, 82, 151, 0.13);
  transform: translateY(-3px) scale(1.02);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}


/* ========== Feature Grids and Lists ========== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.feature-grid li {
  background: #D9EAF7;
  padding: 28px 22px 22px 22px;
  border-radius: 18px;
  min-width: 210px;
  flex: 1 1 240px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  box-shadow: 0 2px 12px var(--color-shadow);
  transition: box-shadow 0.19s, background 0.24s;
}
.feature-grid li:hover {
  background: #EEEDFF;
  box-shadow: 0 8px 25px rgba(25, 105, 170, 0.13);
}
.feature-grid img {
  height: 34px;
  width: 34px;
  margin-bottom: 7px;
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 16px;
  }
}
@media (max-width: 650px) {
  .feature-grid {
    flex-direction: column;
  }
  .feature-grid li {
    width: 98%;
    max-width: 100%;
    min-width: 0;
  }
}
.feature-list, .usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.feature-list li, .usp-list li {
  background: #F9F9FE;
  border-radius: 14px;
  padding: 13px 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #2d3c5d;
  box-shadow: 0 1px 8px var(--color-shadow);
}
.feature-list img, .usp-list img {
  height: 28px;
  width: 28px;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 32px 0;
}
.services-list li {
  background: #EEE7FB;
  border-radius: 18px;
  padding: 24px 18px 18px 18px;
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 3px;
  box-shadow: 0 2px 12px var(--color-shadow);
  border: 1px solid #E0E6EB;
  align-items: flex-start;
  transition: box-shadow 0.16s, border 0.21s;
}
.services-list li strong {
  color: #F2BC3B;
  font-weight: 700;
  font-size: 1.06rem;
  background: #FFF8DC;
  border-radius: 10px;
  padding: 3px 9px 3px 9px;
  margin-top: 7px;
}
.services-list li:hover {
  box-shadow: 0 6px 32px rgba(160, 83, 247, 0.09);
  border: 1px solid #C7BCF9;
}
@media (max-width: 650px) {
  .services-list {
    flex-direction: column;
    gap: 13px;
  }
  .services-list li {
    min-width: 0;
    width: 99%;
    max-width: 100%;
    padding: 19px 10px 13px 10px;
  }
}

.category-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0 20px 0;
  justify-content: flex-start;
}
.service-card {
  background: #DBF5E2;
  border-radius: 16px;
  box-shadow: 0 1px 12px var(--color-shadow);
  padding: 24px 18px;
  flex: 1 1 210px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 3px;
  align-items: flex-start;
  border: 1px solid #CDE5D6;
  transition: background 0.18s, box-shadow 0.17s;
}
.service-card:hover {
  background: #F0FEEE;
  box-shadow: 0 8px 40px rgba(22,191,107,0.09);
}
@media (max-width: 600px) {
  .category-cards {
    flex-direction: column;
    gap: 13px;
  }
  .service-card {
    min-width: 0;
    width: 99%;
    max-width: 100%;
    padding: 18px 10px;
  }
}

/* FAQ List */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 15px;
}
.faq-list li {
  background: #F9F9FE;
  border-radius: 15px;
  padding: 24px 18px 17px 18px;
  box-shadow: 0 2px 12px var(--color-shadow);
}
.faq-list strong {
  display: block;
  color: #093C61;
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 6px;
  font-size: 1.07rem;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.contact-info li {
  color: #2d3c5d;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-info img {
  height: 22px;
  width: 22px;
}
.location-map {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #D9EAF7;
  padding: 10px 16px;
  border-radius: 15px;
  margin-top: 10px;
  box-shadow: 0 1px 6px var(--color-shadow);
  font-size: 0.98rem;
}

/* ========== Testimonial Card ========== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 28px;
  background: #fff;
  border-left: 8px solid #F2BC3B;
  border-radius: 16px;
  box-shadow: 0 3px 20px rgba(180,90,180,0.07);
  font-family: var(--font-body);
  color: #183855;
  font-size: 1.08rem;
  transition: box-shadow 0.2s;
}
.testimonial-card p {
  color: #222235;
  margin-bottom: 9px;
  font-family: var(--font-body);
}
.testimonial-card span {
  color: #093C61;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.93;
}
.testimonial-card:hover {
  box-shadow: 0 12px 38px rgba(70, 110, 220, 0.12);
}

/* ========== Buttons & Call-to-Action ========== */
.cta-primary {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.08rem;
  padding: 12px 30px;
  border-radius: 22px;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 20px rgba(255,192,59,0.10);
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.13s, box-shadow 0.2s, transform 0.13s;
  margin-top: 17px;
}
.cta-primary:hover, .cta-primary:focus {
  background: #ffe49e;
  color: #093C61;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 20px rgba(255,192,59,0.15);
  outline: none;
}

/* ========== Footer ========== */
footer {
  padding: 48px 0 28px 0;
  background: linear-gradient(100deg, #EEE7FB 70%, #DBF5E2 100%);
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  box-shadow: 0 -2px 12px var(--color-shadow);
  margin-top: 70px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #093C61;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.14s;
  background: none;
  border-radius: 10px;
  padding: 3px 10px 3px 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F2BC3B;
}
.contact-footer {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.contact-footer span {
  color: #093C61;
  font-size: 0.96rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-footer img {
  height: 18px;
  width: 18px;
}
.social-links {
  display: flex;
  gap: 13px;
  margin-top: 12px;
}
.social-links a {
  border-radius: 50%;
  background: #E0E6EB;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, box-shadow 0.18s;
}
.social-links a:hover {
  background: #F2BC3B;
  box-shadow: 0 2px 18px rgba(242,188,59,0.09);
}
@media (max-width: 900px) {
  footer .container {
    gap: 18px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ========== Cookie Consent Banner & Modal ========== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 2000;
  background: linear-gradient(90deg, #F9F9FE 50%, #FFF8DC 100%);
  box-shadow: 0 -2px 16px rgba(65,88,159,0.11);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 16px 18px 16px;
  gap: 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: #2d3c5d;
  transition: transform 0.35s cubic-bezier(.47,.07,.46,1.17);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(110%);
}
.cookie-banner__text {
  flex: 1 1 auto;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  padding: 9px 20px;
  font-size: 1rem;
  border-radius: 14px;
  font-family: var(--font-display);
  font-weight: 500;
  border: none;
  margin-left: 2px;
  cursor: pointer;
  transition: background 0.17s, color 0.13s, box-shadow 0.18s;
}
.cookie-btn.accept {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #ffe49e;
}
.cookie-btn.reject {
  background: #E0E6EB;
  color: #093C61;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F2BC3B;
  color: #093C61;
}
.cookie-btn.settings {
  background: #093C61;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #51A2C1;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 17px 7px;
  }
  .cookie-banner__actions {
    gap: 9px;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,52,91,0.22);
  z-index: 2100;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.32s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 36px rgba(112,84,212,0.16);
  padding: 38px 32px 28px 32px;
  max-width: 400px;
  width: 96vw;
  font-family: var(--font-body);
  color: #183855;
  display: flex;
  flex-direction: column;
  gap: 23px;
  animation: cookieModalAppear 0.47s cubic-bezier(.53,-0.11,.36,1.17) both;
}
@keyframes cookieModalAppear {
  0% { transform: scale(0.87) translateY(90px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-family: var(--font-display);
  font-size: 1.28rem;
  color: #093C61;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category label {
  font-weight: 500;
  font-size: 1rem;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 36px;
  height: 22px;
  background: #D9EAF7;
  border-radius: 18px;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: background 0.23s;
}
.cookie-modal .cookie-toggle:checked {
  background: #F2BC3B;
}
.cookie-modal .cookie-toggle:before {
  content: '';
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  display: block;
  box-shadow: 0 1px 4px #E0E6EB;
  position: absolute;
  left: 3px;
  top: 2px;
  transition: left 0.22s cubic-bezier(.4,.2,.2,1);
}
.cookie-modal .cookie-toggle:checked:before {
  left: 15px;
}
.cookie-modal .cookie-category .cookie-toggle:disabled {
  background: #EEE7FB;
  cursor: not-allowed;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 11px;
  justify-content: flex-end;
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 19px 7px 23px 7px;
  }
}

/* ========== Animations & Transitions ========== */
.card, .service-card, .testimonial-card, .faq-list li, .feature-grid li {
  transition: box-shadow 0.23s, background 0.19s, transform 0.16s;
}
.cta-primary, .main-nav a, .mobile-nav a, .cookie-btn {
  transition: background 0.18s, color 0.15s, box-shadow 0.15s, transform 0.15s;
}

/* ========== Responsive Design ========== */
@media (max-width: 950px) {
  h1 { font-size: 2.15rem; }
  h2 { font-size: 1.45rem; }
}
@media (max-width: 650px) {
  h1 { font-size: 1.41rem; }
  h2 { font-size: 1.19rem; }
  h3 { font-size: 1.01rem; }
  .card, .service-card, .testimonial-card {
    padding: 16px 7px 14px 7px;
  }
  .feature-grid li, .usp-list li, .feature-list li {
    padding: 13px 7px 13px 10px;
  }
  .faq-list li {
    padding: 13px 7px;
  }
}

/* ========== Utility and Helper Classes ========== */
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.hide { display: none !important; }

/* ========== Print Support ========== */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  main { padding: 0; background: #fff; }
}

/* ========== Extra: Elegant Next Steps Info ========== */
.next-steps-info {
  background: #D9EAF7;
  border-radius: 14px;
  margin-top: 12px;
  padding: 13px 17px;
  font-size: 1rem;
  color: #093C61;
  box-shadow: 0 1px 9px var(--color-shadow);
}
.next-steps-info ul {
  margin-left: 0;
  list-style: none;
}
.next-steps-info li {
  margin-bottom: 6px;
}

/* ========== Custom Scrollbar ========== */
::-webkit-scrollbar {
  width: 9px;
  background: #F7F7FA;
  border-radius: 12px;
}
::-webkit-scrollbar-thumb {
  background: #E0E6EB;
  border-radius: 12px;
}

/* ========== End of CSS ========== */
