/* RESET & BASE --------------------------------------------- */
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; margin: 0; padding: 0; }
body {
  background: #F8F9FA;
  color: #2F3640;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; border: none; display: block; }
ul, ol { margin-left: 1.2em; }
li { margin-bottom: 10px; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #204B78;
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: .01em;
}
h1 { font-size: 2.5rem; margin-top: 0; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-top: 32px; }
h3 { font-size: 1.25rem; }
h4, h5, h6 { font-size: 1rem; }
p { margin-bottom: 16px; }
strong { font-weight: 700; }
a { color: #29789E; text-decoration: none; transition: color .15s; }
a:hover, a:focus { color: #3185b6; }

/* Layout Containers ---------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: rgba(255,255,255,0.7);
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(125,149,184, 0.10);
}

@media (max-width: 768px) {
  .section { padding: 28px 8px; margin-bottom: 36px; }
}

/* FLEX UTILS ---------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(125,149,184, 0.11);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .22s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(32,75,120,0.15);
}
.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) {
  .content-grid { flex-direction: column; }
  .text-image-section { flex-direction: column; gap: 16px; align-items: stretch; }
  .card-container { flex-direction: column; gap: 16px; }
}

/* HEADER + NAVIGATION -------------------------------------- */
header {
  width: 100%;
  background: linear-gradient(90deg, #EBF2F6 36%, #F3EFFF 100%);
  border-bottom: 1px solid #e0e6ed;
  box-shadow: 0 2px 12px 0 rgba(47, 53, 64, 0.03);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  position: relative;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #204B78;
  padding: 6px 14px;
  border-radius: 20px;
  transition: background .15s, color .15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #dff4ff;
  color: #276379;
}
.btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #85B6FF;
  color: #204B78;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 12px 34px;
  box-shadow: 0 2px 12px 0 rgba(32,75,120,0.11);
  cursor: pointer;
  margin-left: 24px;
  transition: background .16s, color .16s, box-shadow .22s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #e4edfa;
  color: #16396e;
  box-shadow: 0 6px 28px 0 rgba(32,75,120,0.22);
}

/* MOBILE HEADER NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  padding: 7px 15px;
  color: #204B78;
  cursor: pointer;
  position: relative;
  z-index: 1202;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #F9F6FB;
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform .32s cubic-bezier(.86,.01,.77,1.03);
  box-shadow: 0 0 44px 0 rgba(47, 53, 64, 0.18);
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.4rem;
  color: #204B78;
  align-self: flex-end;
  margin: 24px 20px 14px 0;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-close:hover {
  color: #7252AD;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 85vw;
  max-width: 340px;
  margin: 0 auto;
}
.mobile-nav a {
  color: #204B78;
  background: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  border-radius: 18px;
  padding: 16px 12px;
  transition: background .11s, color .11s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e4edfa;
  color: #7252AD;
}

@media (max-width: 1024px) {
  .main-nav { gap: 16px; }
  .btn-primary { margin-left: 12px; }
}
@media (max-width: 900px) {
  header .container { padding: 11px 8px; }
}
@media (max-width: 768px) {
  .main-nav, .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    padding: 7px 4px 7px 10px;
    min-height: 60px;
  }
  .mobile-menu { width: 100vw; }
}

/* HERO ------------------------------------------ */
.hero {
  background: linear-gradient(95deg, #E6F4FF 0%, #F3EFFF 74%, #ffeaf9 100%);
  padding: 74px 0 54px 0;
  border-radius: 0 0 30px 30px;
}
.hero .container {
  align-items: center;
  min-height: 320px;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}

.hero h1 {
  color: #204B78;
  font-size: 2.7rem;
  margin-bottom: 14px;
  font-weight: 700;
  text-shadow: 0 3px 12px #d6f2ff77;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 26px;
  color: #276379;
}
@media (max-width: 650px) {
  .hero { padding: 32px 0 24px 0; border-radius: 0 0 16px 16px; }
  .hero .container { min-height: 120px; }
  .hero h1 { font-size: 1.65rem; }
  .hero p { font-size: 1rem; }
}

/* FEATURE GRID ----------------------------------- */
.feature-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin: 32px 0 0 0;
}
.feature-grid li {
  flex: 1 1 220px;
  min-width: 190px;
  max-width: 270px;
  background: #FEFEFE;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(85,125,154, 0.07);
  padding: 26px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow .22s, border-color .22s;
  border: 1.5px solid #eef3fa;
}
.feature-grid li:hover {
  box-shadow: 0 8px 28px #bae7ff42;
  border-color: #a4bddc;
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 4px;
  opacity: 0.95;
}
.feature-grid h3 {
  color: #276379;
  font-size: 1.13rem;
  margin-bottom: 4px;
  font-weight: 700;
}
.feature-grid p {
  color: #2b374a;
  font-size: 1rem;
}
@media (max-width: 992px) {
  .feature-grid { gap: 18px; }
  .feature-grid li { min-width: 160px; max-width: 100%; }
}
@media (max-width: 700px) {
  .feature-grid { flex-direction: column; gap: 14px; }
  .feature-grid li { width: 100%; min-width: 0; }
}

/* PROCESS LIST --------------------------------------- */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0 0 0;
}
.process-list li {
  background: #EBF2F6;
  color: #204B78;
  border-radius: 14px;
  padding: 18px 18px 16px 20px;
  font-size: 1.06rem;
  box-shadow: 0 2px 12px rgba(191,191,255,0.07);
  transition: box-shadow .2s;
  margin-bottom: 2px;
}
.process-list li strong {
  color: #7252AD;
  font-weight: 700;
}
@media (max-width: 768px) {
  .process-list { gap: 10px; }
  .process-list li { font-size: .98rem; padding: 14px 8px 13px 14px; }
}

/* SERVICE LIST -------------------------------------- */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}
.service-list li {
  background: #F9F7FF;
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 rgba(189,168,255,0.07);
  flex: 1 1 220px;
  min-width: 180px;
  max-width: 270px;
  padding: 27px 17px 19px 17px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 1.5px solid #ece7ff;
  transition: box-shadow .17s, border .17s;
}
.service-list li:hover {
  box-shadow: 0 10px 32px #dabefd33;
  border-color: #c7afe4;
}
.service-list img {
  width: 37px;
  height: 37px;
  margin-bottom: 3px;
}
.service-list h3 {
  color: #204B78;
  font-size: 1.15rem;
  font-weight: 700;
}
.service-list p { font-size: 1rem; color: #276379; }
@media (max-width: 900px) {
  .service-list { gap: 15px; }
}
@media (max-width: 650px){
  .service-list { flex-direction: column; gap: 10px; }
  .service-list li { width: 100%; min-width: 0; max-width: 100%; }
}

/* TESTIMONIALS ------------------------------------------- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #FFF8FD;
  border-radius: 22px;
  box-shadow: 0 4px 28px 0 rgba(191,168,225, 0.13);
  padding: 20px 28px;
  margin-bottom: 20px;
  border: 1.5px solid #ebd0ff;
  max-width: 700px;
  transition: box-shadow .18s;
}
.testimonial-card p {
  font-size: 1.13rem;
  color: #204B78;
  margin-bottom: 7px;
}
.testimonial-card span {
  color: #7252AD;
  font-weight: 500;
  font-size: .98rem;
  margin-right: 8px;
}
.testimonial-card .star-ratings {
  color: #FFD388;
  font-size: 1.3rem;
  margin-top: 2px;
  letter-spacing: 2px;
}
@media (max-width: 820px) {
  .testimonial-card { max-width: 100%; flex-direction: column; gap: 10px; padding: 16px 10px; }
}

/* PRICING TABLE ------------------------------------------- */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 14px;
  margin: 24px 0 34px 0;
  font-size: 1.03rem;
}
.pricing-table thead tr {
  background: #E6F4FF;
}
.pricing-table th, .pricing-table td {
  padding: 16px 16px;
  text-align: left;
  border-radius: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.pricing-table th {
  color: #204B78;
  font-weight: 700;
}
.pricing-table td {
  background: #FEFEFE;
  color: #276379;
  border: 1.5px solid #e2eafe;
  font-size: 1.06rem;
}
@media (max-width: 660px) {
  .pricing-table thead { display: none; }
  .pricing-table tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
    border-radius: 12px;
  }
  .pricing-table td {
    border-radius: 0;
    padding: 10px 7px;
  }
}

/* FAQ ACCORDION ------------------------------------------- */
.faq-accordion h3 {
  font-size: 1.08rem;
  margin-bottom: 6px;
  color: #204B78;
  font-weight: 600;
  cursor: pointer;
  transition: color .15s;
}
.faq-accordion h3:hover { color: #7252AD; }
.faq-accordion p {
  margin-bottom: 12px;
  margin-left: 12px;
  color: #276379;
  font-size: .98rem;
}

/* TEXT SECTION ------------------------------------------- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.text-section ul { margin-left: 1.2em; margin-top: 6px; }
.text-section li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #276379;
}
.text-section img {
  width: 21px; height: 21px; vertical-align: middle;
}

/* FOOTER ---------------------------------------- */
footer {
  background: linear-gradient(91deg, #E6F4FF 20%, #F3EFFF 100%);
  color: #204B78;
  border-top: 1px solid #e0e6ed;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -2px 12px 0 rgba(47,53,64,0.03);
  margin-top: 50px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  padding: 40px 20px 18px 20px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #204B78;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  opacity: 0.93;
  transition: color .14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #7252AD;
}
.footer-contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  font-size: 1.01rem;
  margin-bottom: 6px;
  color: #276379;
}
.footer-contact img {
  width: 41px;
  height: 41px;
  opacity: 0.88;
}
.footer-rights {
  color: #b8bec7;
  font-size: 0.94rem;
  margin-top: 12px;
}
@media (max-width: 660px){
  footer .container { padding: 17px 8px 7px 8px;
    gap: 9px; }
  .footer-contact { flex-direction: column; align-items: flex-start; gap: 7px; font-size: .98rem; }
  .footer-nav { gap: 10px; font-size: .97rem; }
}

/* BUTTONS & INTERACTIVE ------------------------------------- */
button, input[type="submit"], input[type="button"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  border-radius: 999px;
  border: none;
  padding: 8px 20px;
  background: #e1eafb;
  color: #204B78;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(91,128,175,0.09);
  margin: 3px 6px 3px 0;
  transition: background .14s, color .14s, box-shadow .2s;
}
button:active, input[type="submit"]:active {
  box-shadow: 0 3px 18px 0 rgba(32,75,120,0.14);
}

/* TYPOGRAPHY --------------------------------------------- */
html { font-size: 16px; }
@media (max-width: 500px) { html { font-size: 15px; } }
@media (max-width: 370px) { html { font-size: 14px; } }

hr {
  border: 0;
  height: 1px;
  background: #e0e6ed;
  margin: 26px 0;
}
blockquote {
  background: #EAEBF5;
  padding: 18px 32px;
  border-left: 4px solid #276379;
  border-radius: 0 13px 13px 0;
  margin-bottom: 20px;
  font-style: italic;
}

/* COOKIE CONSENT BANNER & MODAL -------------------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 20000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  background: linear-gradient(90deg, #E6F4FF 60%, #F3EFFF 100%);
  box-shadow: 0 -2px 28px rgba(40,40,80,0.14);
  padding: 20px 28px;
  border-radius: 18px 18px 0 0;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #204B78;
  min-height: 72px;
}
.cookie-consent-banner p {
  margin: 0; font-size: 1rem; color: #204B78;
}
.cookie-consent-actions {
  display: flex;
  gap: 14px;
  margin-left: auto;
}
.cookie-btn {
  border: none;
  border-radius: 999px;
  padding: 10px 25px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #204B78;
  background: #bbe2fc;
  cursor: pointer;
  transition: background .13s, color .13s;
  box-shadow: 0 2px 12px 0 rgba(125,149,184,0.09);
}
.cookie-btn.accept {
  background: #adfdcf;
  color: #217858;
}
.cookie-btn.accept:hover { background: #67e3a5; color: #1a6e47; }
.cookie-btn.reject {
  background: #ffd7d7;
  color: #b03831;
}
.cookie-btn.reject:hover { background: #ff9d9d; color: #861c1c; }
.cookie-btn.settings {
  background: #e4edfa;
  color: #204B78;
}
.cookie-btn.settings:hover { background: #e0d9fa; color: #573fc0; }

@media (max-width: 610px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 18px;
    padding: 17px 10px 9px 10px;
    font-size: .98rem;
  }
  .cookie-consent-actions { margin-left: 0; gap: 8px; }
}

/* COOKIE MODAL DIALOG ------------------------------------ */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 22000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(70, 58, 105, 0.14);
  animation: fadeIn .35s;
}
@keyframes fadeIn {
  from { opacity: 0;} to { opacity: 1; }
}
.cookie-modal-content {
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 2px 54px rgba(97,80,156, 0.14);
  padding: 32px 30px 28px 30px;
  min-width: 300px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 17px;
  position: relative;
  max-width: 460px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal-content h2 {
  font-size: 1.45rem;
  color: #204B78;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 9px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 11px;
}
.cookie-category input[type="checkbox"]{
  accent-color: #67e3a5;
  width: 17px; height: 17px;
}
.cookie-category label { font-size: 1.01rem; color: #204B78; }
.cookie-category.essential label { font-weight: bold; }
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 14px;
  background: none;
  border: none;
  font-size: 1.45rem;
  color: #7252AD;
  cursor: pointer;
}
.cookie-actions {
  margin-top: 11px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}

/* ANIMATION CLASSES ------------------------------------ */
.slide-in {
  animation: slideInLeft .32s both;
}
.slide-out {
  animation: slideOutLeft .22s both;
}
@keyframes slideInLeft {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes slideOutLeft {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(-100%); opacity: 0; }
}

/* ACCESSIBILITY ---------------------------------------- */
:focus-visible {
  outline: 2px solid #7bb0fc;
  outline-offset: 1px;
}

/* SPACING COMPATIBILITY -------------------------------- */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* PASTEL/BRAND PALETTE SOFTNESS ----------------------- */
body, .section, .container, .content-wrapper {
  /* Gentle, dreamy atmosphere via soft backgrounds */
  background-color: #F8F9FA;
  /* visible on color difference */
}

/* ------ ADDITIONAL (Misc.) --------------------------- */
::-webkit-scrollbar { width: 8px; background: #f3eeff; border-radius: 8px; }
::-webkit-scrollbar-thumb { background: #e0e6ed; border-radius: 8px; }

/* Media break content wrapper padding */
@media (max-width: 767px) {
  .section { padding: 26px 8px; margin-bottom: 32px; }
  .content-wrapper { padding: 0; }
}
