/* --- 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, main, 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 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 16px;
  background: #F2F5F7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: 'Open Sans', Georgia, serif;
  background: #F2F5F7;
  color: #204165;
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  border: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  border: none;
}
a {
  color: #204165;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus-visible {
  outline: 2px solid #28A87D;
  outline-offset: 2px;
}
ul, ol {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

/* --- TYPOGRAPHY & HEADINGS --- */
h1, .h1 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 2.5rem;
  color: #204165;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0.01em;
}
h2, .h2 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 2rem;
  color: #204165;
  margin-bottom: 18px;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: 0.01em;
}
h3, .h3 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.3rem;
  color: #204165;
  margin-bottom: 12px;
  font-weight: 500;
  line-height: 1.25;
}
h4, .h4 {
  font-family: "Open Sans", serif;
  font-size: 1rem;
  margin-bottom: 8px;
  color: #204165;
  font-weight: 600;
}
strong {
  font-weight: 700;
}
p {
  font-size: 1rem;
  color: #204165;
  margin-bottom: 14px;
  line-height: 1.7;
}
.text-section {
  margin-bottom: 30px;
  color: #204165;
  font-size: 1rem;
  line-height: 1.7;
}
.text-section a {
  text-decoration: underline;
  color: #28A87D;
  transition: color 0.2s;
}
.text-section a:hover {
  color: #195c43;
}
.extra-info {
  color: #666B74;
  font-size: 0.98rem;
  margin-top: 18px;
  margin-bottom: 0;
}

/* --- GENERAL --- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 20px 0 rgba(32,65,101,0.05);
  width: 100%;
}

/* ---- FLEXBOX LAYOUTS ---- */
.card-container,
.card-grid,
.value-grid,
.included-services-grid,
.feature-grid,
.service-categories-grid,
.subscription-types,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.card,
.value-grid > li,
.feature-grid > li,
.included-services-grid > li,
.service-categories-grid > div,
.subscription-types > div,
.subscription-options > div  {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(32,65,101,0.06);
  padding: 22px 24px;
  flex: 1 1 280px;
  min-width: 220px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F9FAFA;
  border-radius: 14px;
  border: 1px solid #E7EAED;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 rgba(32,65,101,0.06);
  min-width: 240px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.subscription-options {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 16px;
}
.plan-comparison ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

/* --- BUTTONS / CTAS --- */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: 8px;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.03rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s, transform 0.18s;
  min-width: 160px;
  margin-right: 8px;
}
.btn-primary {
  background: #204165;
  color: #fff;
  box-shadow: 0 2px 12px 0 rgba(32,65,101,0.05);
}
.btn-primary:hover, .btn-primary:focus {
  background: #195c43;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 3px 16px 0 rgba(32,65,101,0.10);
}
.btn-secondary {
  background: #F2F5F7;
  color: #204165;
  border: 1px solid #204165;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #28A87D;
  color: #fff;
  border-color: #28A87D;
  box-shadow: 0 3px 16px 0 rgba(40,168,125,0.10);
}

/* --- HEADER / NAV --- */
header {
  background: #fff;
  box-shadow: 0 6px 24px 0 rgba(32,65,101,0.04);
  border-bottom: 1px solid #E6E9EC;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 16px 20px;
}
header nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
header nav a {
  font-family: "Open Sans", serif;
  font-weight: 500;
  font-size: 1rem;
  color: #204165;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.16s, color 0.16s;
}
header nav a:hover:not(.btn-primary):not(.btn-secondary) {
  background: #F2F5F7;
  color: #28A87D;
}
header nav a.btn-primary {
  margin-left: 14px;
}

/* --- MOBILE BURGER MENU --- */
.mobile-menu-toggle {
  display: none;
  background: #204165;
  color: #fff;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: background 0.16s;
  margin-left: 18px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #195c43;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(32,65,101, 0.97);
  color: #fff;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(.79,.14,.15,.86);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #fff;
  font-size: 2.2rem;
  padding: 14px 22px 4px 22px;
  margin: 6px 16px 0 0;
  cursor: pointer;
  border: none;
  transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #28A87D;
}
.mobile-menu nav.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 36px 26px;
  margin-top: 12px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: "Georgia", "Times New Roman", serif;
  padding: 10px 2px;
  border-radius: 6px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #28A87D;
  color: #fff;
}

/* -- Hide main nav, show burger on mobile -- */
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* --- HERO & MAIN SECTIONS --- */
main {
  width: 100vw;
  min-height: 70vh;
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  background: #F2F5F7;
}

/* --- FEATURE/ICON GRIDS --- */
.feature-grid, .value-grid, .included-services-grid, .service-categories-grid {
  gap: 24px;
}
.feature-grid > li, .value-grid > li, .included-services-grid > li, .service-categories-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.01rem;
  font-family: 'Open Sans', serif;
  box-shadow: 0 1px 8px 0 rgba(32,65,101,0.04);
  border: 1px solid #E6E9EC;
  background: #fff;
  border-radius: 10px;
  padding: 20px 20px 18px 20px;
  min-width: 210px;
  flex: 1 1 225px;
}
.feature-grid img, .value-grid img, .included-services-grid img, .service-categories-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
}
.subscription-types > div {
  background: #fff;
  padding: 18px 18px 16px 18px;
  border-radius: 10px;
  box-shadow: 0 2px 9px 0 rgba(32,65,101,0.04);
  min-width: 185px;
  flex: 1 1 185px;
}

/* --- STEPPER, FAQ, ACCORDION --- */
.stepper, .step-list, .accordion-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stepper > li, .step-list > li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.1rem;
}
.stepper > li img, .step-list > li img {
  width: 32px;
  height: 32px;
  margin-right: 10px;
}
.accordion-list > div {
  background: #f9fafc;
  border-radius: 9px;
  padding: 16px 22px;
  box-shadow: 0 2px 5px 0 rgba(32,65,101,0.04);
  border: 1px solid #e7eaed;
  margin-bottom: 12px;
}
.accordion-list h3 {
  font-size: 1.07rem;
  cursor: pointer;
  margin-bottom: 6px;
}
.accordion-list div > div {
  font-size: 1rem;
  color: #222746;
  margin-top: 2px;
}

/* --- TESTIMONIAL SECTIONS --- */
.testimonial-card {
  background: #F2F5F7;
  color: #204165;
  border: 1px solid #E6E9EC;
  box-shadow: 0 3px 16px 0 rgba(32,65,101,0.03);
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1rem;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card strong {
  color: #204165;
  font-size: 1.02rem;
}
.testimonial-card .star-rating {
  color: #F5CD59;
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin-left: 8px;
  font-family: 'Open Sans', serif;
}
.testimonial-card p {
  color: #222746;
  font-family: 'Open Sans', serif;
  font-size: 1rem;
  margin: 0;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px 0 rgba(32,65,101,0.08);
  transform: translateY(-2px) scale(1.02);
}

/* --- PRICING TABLE --- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}
.pricing-table th, .pricing-table td {
  border: 1px solid #E6E9EC;
  padding: 14px 18px;
  text-align: left;
  font-size: 1rem;
}
.pricing-table thead th {
  background: #204165;
  color: #fff;
  font-family: 'Georgia', 'Times New Roman', serif;
}
.pricing-table tbody tr {
  background: #fff;
  transition: background 0.18s;
}
.pricing-table tbody tr:hover {
  background: #F2F5F7;
}

.plan-attributes ul {
  margin: 0;
  gap: 12px;
  display: flex;
  flex-direction: column;
  font-size: 1rem;
}

/* --- FOOTER --- */
footer {
  background: #204165;
  color: #fff;
  padding: 36px 0 24px 0;
  font-family: 'Georgia', 'Times New Roman', serif;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
footer nav a {
  color: #F2F5F7;
  font-size: 1em;
  text-decoration: underline;
  transition: color 0.16s;
}
footer nav a:hover {
  color: #28A87D;
}
footer .text-section {
  font-family: 'Open Sans', serif;
  color: #E6E9EC;
  font-size: 0.98rem;
}
footer a {
  color: #fff;
}
footer a:hover {
  color: #F5CD59;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1700;
  width: 100vw;
  display: flex;
  justify-content: center;
  background: rgba(240,242,246, 0.97);
  box-shadow: 0 -2px 16px 0 rgba(32,65,101,0.09);
  padding: 26px 10px 16px 10px;
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #204165;
  font-size: 1rem;
  animation: slideupcb 0.42s cubic-bezier(.79,.14,.15,.86);
  align-items: flex-start;
}
@keyframes slideupcb {
  from { transform: translateY(150%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.cookie-banner .btn-cookie {
  font-family: 'Georgia', 'Times New Roman', serif;
  border-radius: 8px;
  padding: 8px 26px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  background: #204165;
  color: #fff;
  margin-right: 5px;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s;
}
.cookie-banner .btn-cookie.accept {
  background: #28A87D;
  color: #fff;
}
.cookie-banner .btn-cookie.accept:hover {
  background: #195c43;
}
.cookie-banner .btn-cookie.reject {
  background: #fff;
  color: #204165;
  border: 1px solid #204165;
}
.cookie-banner .btn-cookie.reject:hover {
  background: #F2F5F7;
}
.cookie-banner .btn-cookie.settings {
  background: #F2F5F7;
  color: #204165;
  border: 1px solid #204165;
}
.cookie-banner .btn-cookie.settings:hover {
  background: #28A87D;
  color: #fff;
  border-color: #28A87D;
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(32,65,101,0.35);
  z-index: 1800;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: popmodal 0.50s cubic-bezier(.79,.14,.15,.86);
}
@keyframes popmodal {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
.cookie-modal-content {
  background: #fff;
  color: #204165;
  font-family: 'Georgia', 'Times New Roman', serif;
  border-radius: 14px;
  padding: 36px 30px 28px 30px;
  max-width: 440px;
  min-width: 270px;
  box-shadow: 0 6px 40px 0 rgba(32,65,101,0.15);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 18px;
  background: none;
  color: #204165;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal-close:hover {
  color: #28A87D;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-family: 'Open Sans', serif;
  font-size: 1rem;
  color: #204165;
  font-weight: bold;
}
.cookie-category input[type="checkbox"]:not(:disabled) {
  accent-color: #28A87D;
  width: 19px; height: 19px;
  margin-right: 2px;
}
.cookie-category input[disabled] {
  filter: grayscale(35%);
  cursor: not-allowed;
}
.cookie-modal .btn-cookie {
  width: 100%;
  margin-top: 17px;
  padding: 10px 0;
}


/* --- RESPONSIVENESS / MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .container { max-width: 98vw; }
  .section { padding: 20px 10px; }
}
@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .feature-grid > li, .service-categories-grid > div, .subscription-types > div {
    min-width: 150px;
  }
  .pricing-table th, .pricing-table td {
    padding: 10px 8px;
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  .container { padding: 0 10px; }
  main { gap: 28px; padding-top: 12px; padding-bottom: 12px; }
  .section { padding: 16px 6px; margin-bottom: 32px; }
  .content-wrapper { gap: 16px; }
  .card-container, .card-grid, .value-grid, .feature-grid, .included-services-grid, .service-categories-grid, .testimonial-slider, .subscription-types, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .card, .value-grid > li, .feature-grid > li, .service-categories-grid > div, .subscription-types > div {
    flex: 1 1 100%;
    min-width: unset;
    padding: 14px 10px;
  }
  .testimonial-card { min-width: unset; }
  .text-image-section { flex-direction: column; gap: 18px; }
  header .container { gap: 12px; padding: 9px 10px; }
  .cookie-banner-content { max-width: 98vw; gap: 11px; font-size: 0.98rem; }
}
@media (max-width: 520px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.09rem; }
  .testimonial-card, .feature-grid > li, .card, .section {
    border-radius: 10px;
    padding: 10px 6px;
    font-size: 0.95em;
  }
  .btn-primary, .btn-secondary {
    font-size: 0.97em;
    padding: 10px 10px;
    min-width: 100px;
  }
}

/* --- FORM ELEMENTS --- */
input, textarea, select {
  border: 1px solid #E6E9EC;
  background: #fff;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 1rem;
  color: #204165;
}
input:focus, textarea:focus, select:focus {
  border-color: #28A87D;
  background: #f6fdfb;
}

/* --- MICRO-INTERACTIONS & TRANSITIONS --- */
.card, .feature-grid > li, .value-grid > li, .testimonial-card, .service-categories-grid > div, .subscription-types > div {
  transition: box-shadow 0.19s, transform 0.18s;
}
.card:hover, .feature-grid > li:hover, .value-grid > li:hover, .service-categories-grid > div:hover, .subscription-types > div:hover {
  box-shadow: 0 8px 28px 0 rgba(32,65,101,0.10);
  transform: translateY(-2px) scale(1.02);
}

/* --- SELECTION & SCROLLBAR --- */
::selection {
  background: #204165;
  color: #fff;
}
::-webkit-scrollbar {
  width: 8px;
  background: #F2F5F7;
}
::-webkit-scrollbar-thumb {
  background: #204165;
  border-radius: 6px;
}

/* --- UTILITY CLASSES / SPACING PATTERNS --- */
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.gap-24 { gap: 24px; }
.text-center { text-align: center; }

/* --- ACCESSIBILITY: HIDE VISUALLY --- */
.visually-hidden { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; border: 0; }

/* --- END OF ELEGANT_CLASSIC THEME --- */