/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: "Georgia", "Times New Roman", Times, serif;
  background: #F4F7FB;
  color: #223D54;
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: #223D54;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #427EAC;
  outline: none;
}

/* Selection color for elegance */
::selection {
  background: #427EAC;
  color: #fff;
}

/* Responsive container */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ==========================================================================
   TYPOGRAPHY – Elegant & Classic
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: "Georgia", "Times New Roman", Times, serif;
  color: #223D54;
  font-weight: 600;
  margin-bottom: 20px;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  line-height: 1.18;
  margin-top: 16px;
}
h3 {
  font-size: 1.35rem;
  margin-top: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-top: 8px;
}
p, li {
  font-size: 1rem;
  margin-bottom: 0.8em;
  font-family: "Georgia", "Times New Roman", Times, serif;
  color: #345072;
}
strong {
  font-weight: 700;
  color: #223D54;
}
.subheadline {
  font-size: 1.2em;
  color: #427EAC;
  font-family: "Georgia", "Times New Roman", Times, serif;
  margin-bottom: 1.2em;
}
.text-section ul, .text-section ol {
  padding-left: 24px;
  margin-bottom: 1.5em;
}
.text-section ul li::marker, .text-section ol li::marker {
  color: #427EAC;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
header {
  background: #fff;
  border-bottom: 1px solid #e3e8ee;
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
}

.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  font-family: "Georgia", "Times New Roman", Times, serif;
  font-size: 1rem;
  color: #223D54;
  padding: 9px 0 7px 0;
  transition: color 0.2s, border-color 0.2s;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a:focus {
  color: #427EAC;
  border-bottom: 2px solid #427EAC;
}
.btn-primary {
  font-family: "Georgia", "Times New Roman", Times, serif;
  background: #223D54;
  color: #fff;
  padding: 10px 32px;
  border-radius: 32px;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(34,61,84,0.06);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.14s;
  margin-left: 8px;
  display: inline-block;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: #427EAC;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 16px rgba(66,126,172,0.08);
}

/* HAMBURGER MENU STYLES & MOBILE NAV */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: 1px solid #e3e8ee;
  color: #223D54;
  font-size: 2rem;
  border-radius: 8px;
  padding: 4px 14px;
  cursor: pointer;
  transition: background 0.18s, border 0.18s;
  margin-left: 12px;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F4F7FB;
  border: 1px solid #427EAC;
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #fff;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.52,1.64,.37,.66);
  box-shadow: -2px 0 32px rgba(34,61,84,0.14);
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #223D54;
  font-size: 2rem;
  margin: 24px 24px 0 0;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #427EAC;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 40px 24px;
  margin-top: 24px;
}
.mobile-nav a {
  font-family: "Georgia", "Times New Roman", Times, serif;
  font-size: 1.25rem;
  color: #223D54;
  padding: 12px 0;
  transition: color 0.18s, background 0.18s;
  border-radius: 8px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F4F7FB;
  color: #427EAC;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 9px;
  }
  .btn-primary {
    font-size: 1rem;
    padding: 9px 22px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  header .container {
    min-height: 62px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .btn-primary {
    padding: 10px 18px;
    font-size: 0.95rem;
  }
}


/* ==========================================================================
   HERO, SECTIONS, & MAIN STRUCTURE
   ========================================================================== */
.section, .about-section, .services, .features, .cta-section, .legal-section, .confirmation-section, .faq-section, .contact, .pricing, .testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.section:last-child, .about-section:last-child, .services:last-child, .features:last-child, .cta-section:last-child, .legal-section:last-child, .confirmation-section:last-child, .faq-section:last-child, .contact:last-child, .pricing:last-child, .testimonials:last-child {
  margin-bottom: 0;
}
.hero {
  background: linear-gradient(90deg, #F4F7FB 70%, #e3e8ee 100%);
  padding: 64px 0 48px 0;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 660px;
}
@media (max-width: 768px) {
  .hero {
    padding: 45px 0 22px 0;
  }
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  flex-direction: row;
}
@media (max-width: 900px) {
  .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 16px rgba(34,61,84,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 30px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(34,61,84,0.13);
  transform: translateY(-2px) 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, .content-grid {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 26px 30px 20px 30px;
  background: #fff;
  border-left: 5px solid #427EAC;
  border-radius: 18px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(34,61,84,0.07);
  color: #223D54;
  max-width: 450px;
  flex: 1 1 330px;
  transition: box-shadow 0.23s;
}
.testimonial-card p {
  color: #223D54;
  font-size: 1.07em;
}
.testimonial-card strong {
  font-size: 0.98em;
  color: #223D54;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 32px rgba(66,126,172,0.10);
}

/* Card and Feature Grid Styles */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(34,61,84,0.06);
  padding: 24px 18px 20px 18px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.13s;
}
.feature-card:hover {
  box-shadow: 0 8px 24px rgba(66,126,172,0.12);
  transform: translateY(-3px) scale(1.03);
}
.feature-card img {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  filter: grayscale(0.18) brightness(1.1);
}
.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #223D54;
  font-weight: 700;
}
.feature-card p {
  font-family: "Georgia", "Times New Roman", Times, serif;
  color: #345072;
}
.feature-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #427EAC;
  margin-top: 8px;
  letter-spacing: 0.01em;
  font-family: "Georgia", "Times New Roman", Times, serif;
}
@media (max-width: 768px) {
  .feature-grid{
    flex-direction: column;
    gap: 14px;
  }
  .feature-card{
    max-width: 100%;
    width: 100%;
  }
}

/* Services Page Service Card */
.service-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(34,61,84,0.07);
  padding: 28px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  flex: 1 1 230px;
  min-width: 220px;
  max-width: 340px;
  transition: box-shadow 0.13s, transform 0.11s;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(66,126,172,0.10);
  transform: translateY(-3px) scale(1.02);
}
.service-card img {
  width: 46px;
  height: 46px;
  margin-bottom: 13px;
}
.service-card h2 {
  font-size: 1.16rem;
  margin-bottom: 8px;
  color: #223D54;
  font-weight: 700;
}
.service-price {
  color: #427EAC;
  font-weight: 600;
  font-size: 1.08rem;
  margin-top: 7px;
  font-family: "Georgia", "Times New Roman", Times, serif;
}


/* Feature List Items */
.features ul, .features ol,
.legal-section ul, .legal-section ol,
.text-section ul, .text-section ol {
  list-style-position: inside;
  margin: 18px 0 0 0;
  padding-left: 18px;
  color: #345072;
}
.features ul li, .features ol li,
.legal-section ul li, .legal-section ol li,
.text-section ul li, .text-section ol li {
  margin-bottom: 13px;
  font-family: "Georgia", "Times New Roman", Times, serif;
  font-size: 1.02em;
  display: flex;
  align-items: center;
  gap: 11px;
}
.features ul li img, .features ol li img, .legal-section ul li img, .legal-section ol li img {
  margin-right: 8px;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  filter: grayscale(0.18) brightness(1.09);
}

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

/* CTA Section */
.cta-section {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 16px rgba(66,126,172,0.08);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.cta-section .content-wrapper {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.cta-section h2 {
  color: #223D54;
  margin-bottom: 12px;
}

/* Confirmation Thanks Section */
.confirmation-section {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 16px rgba(66,126,172,0.08);
  margin-bottom: 60px;
  padding: 40px 20px;
  text-align: center;
}
.confirmation-section ul {
  margin: 15px 0;
  padding-left: 24px;
  text-align: left;
}


/* FAQ and Legal Sections */
.faq-section .faq-item, .legal-section .text-section {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(66,126,172,0.08);
  padding: 35px 26px 26px 26px;
  margin-bottom: 22px;
}

.faq-section .faq-item h2 {
  margin-bottom: 10px;
  font-size: 1.14rem;
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: "Georgia", "Times New Roman", Times, serif;
  margin-bottom: 26px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 13px rgba(34,61,84,0.06);
  overflow: hidden;
  font-size: 0.97rem;
}
.pricing-table th, .pricing-table td {
  padding: 15px 20px;
  border-right: 1px solid #e3e8ee;
  border-bottom: 1px solid #e3e8ee;
}
.pricing-table th:last-child, .pricing-table td:last-child {
  border-right: none;
}
.pricing-table th {
  background: #427EAC;
  color: #fff;
  text-align: left;
  font-size: 1.06rem;
  font-weight: 600;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

.service-price-descriptions ul {
  margin-top: 9px;
}

@media (max-width: 900px) {
  .pricing-table th, .pricing-table td {
    padding: 11px 8px;
    font-size: 0.94rem;
  }
}
@media (max-width: 700px) {
  .pricing-table {
    font-size: 0.86rem;
    min-width: 450px;
    overflow-x: auto;
    display: block;
  }
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */
footer {
  background: #223D54;
  color: #fff;
  padding: 50px 0 35px 0;
  margin-top: 45px;
  box-shadow: 0 -4px 24px rgba(66,126,172,0.07);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 48px 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.footer-brand img {
  width: 52px;
  height: auto;
  margin-bottom: 3px;
}
.footer-brand p {
  color: #fff;
  font-size: 0.97em;
  line-height: 1.5;
  margin-bottom: 0;
}
.footer-contact {
  flex: 1 1 215px;
  color: #fff;
}
.footer-contact h3 {
  margin-bottom: 6px;
  color: #F4F7FB;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.footer-contact a {
  color: #F4F7FB;
  text-decoration: underline;
}
.footer-nav {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav a {
  color: #F4F7FB;
  font-family: "Georgia", "Times New Roman", Times, serif;
  font-size: 0.99rem;
  padding: 2px 0;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #427EAC;
}
@media (max-width: 800px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}
footer p, footer a {
  font-family: "Georgia", "Times New Roman", Times, serif;
  font-size: 1rem;
}

/* ==========================================================================
   COOKIE CONSENT BANNER & MODAL
   ========================================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: #fff;
  border-top: 2px solid #223D54;
  box-shadow: 0 -4px 18px rgba(34,61,84,0.08);
  padding: 22px 12px 18px 12px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 25px;
  justify-content: center;
  animation: slideInUp 0.45s cubic-bezier(.52,1.64,.37,.66);
}
@keyframes slideInUp {
  0% { transform: translateY(100%); }
  100% { transform: translateY(0); }
}
.cookie-banner__text {
  color: #223D54;
  font-size: 1.03em;
  max-width: 410px;
  font-family: "Georgia", "Times New Roman", Times, serif;
}
.cookie-banner__btn,
.cookie-banner__settings {
  font-family: "Georgia", "Times New Roman", Times, serif;
  border: none;
  border-radius: 22px;
  padding: 8px 20px;
  font-size: 1em;
  color: #fff;
  background: #223D54;
  cursor: pointer;
  margin-right: 6px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(34,61,84,0.06);
}
.cookie-banner__btn.accept {
  background: #427EAC;
}
.cookie-banner__btn.reject {
  background: #8B929A;
  color: #fff;
}
.cookie-banner__btn:hover, .cookie-banner__btn:focus {
  background: #223D54;
  color: #fff;
}
.cookie-banner__settings {
  background: #fff;
  color: #223D54;
  border: 1px solid #427EAC;
  box-shadow: none;
  margin-right: 0;
}
.cookie-banner__settings:hover, .cookie-banner__settings:focus {
  background: #427EAC;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 2100;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,61,84,0.38);
  transition: opacity 0.35s;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .25s;
}
@keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } }
.cookie-modal {
  background: #fff;
  color: #223D54;
  border-radius: 18px;
  box-shadow: 0 16px 48px rgba(34,61,84,0.22);
  min-width: 320px;
  max-width: 365px;
  padding: 38px 30px 28px 30px;
  position: relative;
  animation: scaleIn .23s;
}
@keyframes scaleIn {
  0% { transform: scale(0.9); opacity: 0; } 100% { transform: scale(1); opacity: 1; }
}
.cookie-modal__close {
  position: absolute;
  top: 12px;
  right: 17px;
  background: none;
  border: none;
  color: #223D54;
  font-size: 1.55rem;
  cursor: pointer;
  transition: color 0.2s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: #427EAC;
}
.cookie-modal h2 {
  font-size: 1.31rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}
.cookie-modal .cookie-category label {
  font-family: "Georgia", "Times New Roman", Times, serif;
  font-size: 1em;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: #427EAC;
  width: 19px; height: 19px;
}
.cookie-modal .cookie-category .always-on {
  color: #427EAC; font-weight: 700;
  margin-left: 6px;
  font-size: 0.96em;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  min-width: 100px;
}

/* ==========================================================================
   GENERAL UTILITIES
   ========================================================================== */
.text-center { text-align: center; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-20 { gap: 20px; }

/* ==========================================================================
   SCROLLBAR STYLES (for classic feel)
   ========================================================================== */
::-webkit-scrollbar {
  width: 9px;
  background: #e3e8ee;
}
::-webkit-scrollbar-thumb {
  background: #427EAC;
  border-radius: 7px;
}

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */
@media (max-width: 600px) {
  h1 {
    font-size: 1.49rem;
  }
  h2 {
    font-size: 1.18rem;
  }
  .footer-brand p, .footer-contact p, .footer-contact, .footer-nav a {
    font-size: 0.98em;
  }
  .cookie-modal {
    min-width: 0; max-width: 95vw;
    padding: 28px 10px 18px 10px;
  }
  .section, .about-section, .services, .features, .cta-section, .legal-section, .confirmation-section, .faq-section, .contact, .pricing, .testimonials {
    padding: 25px 5px;
  }
}

/* Minimal focus indicator for accessibility */
a:focus,
button:focus {
  outline: 2px solid #427EAC;
  outline-offset: 2px;
}

/* ==========================================================================
   END OF STYLE.CSS
   ========================================================================== */
