/* RESET AND 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, 
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;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  color: #2F3A4C;
  background: #F7FAFB;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}
a {
  color: #2F3A4C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #684eb4;
}

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Roboto:wght@400;500;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #2F3A4C;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 14px;
}
p, ul, ol, li {
  font-family: 'Roboto', Arial, sans-serif;
  color: #2F3A4C;
  font-size: 1rem;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
}

.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.container {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

/* FLEX SPACING PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(165,160,180,0.09);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow .22s, transform .17s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(111,120,170,0.16);
  transform: translateY(-4px) scale(1.02);
}
.content-grid, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section, .text-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonials-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: #Fafdff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(116,143,178,0.09);
  min-width: 260px;
  max-width: 420px;
}
.testimonial-card p {
  color: #2F3A4C;
  font-size: 1.08rem;
  margin-bottom: 10px;
}
.testimonial-author {
  color: #7A869A;
  font-size: 0.98rem;
  font-style: italic;
  letter-spacing: .01em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(180,160,170,0.08);
  padding: 24px 20px;
  min-width: 250px;
  max-width: 340px;
  transition: box-shadow .2s, transform .16s;
}
.feature-item:hover {
  box-shadow: 0 6px 24px rgba(116,143,180,0.16);
  transform: translateY(-2px) scale(1.012);
}
.service-price {
  font-size: 1.15rem;
  font-family: 'Playfair Display', serif;
  color: #684eb4;
  letter-spacing: 0.01em;
  margin-top: 4px;
}

/* HERO SECTIONS */
.hero {
  min-height: 320px;
  background: linear-gradient(101deg, #f8f9fc 56%, #F0ECE1 100%);
  border-radius: 0 0 64px 64px;
  box-shadow: 0 8px 36px 0 rgba(116,143,178,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 0 54px 0;
  margin-bottom: 45px;
}
.hero .container, .hero .content-wrapper {
  align-items: center;
  text-align: center;
  justify-content: center;
}
.hero h1 {
  font-size: 2.8rem;
  line-height: 1.18;
  color: #2F3A4C;
  margin-bottom: 16px;
}
.hero p {
  font-size: 1.16rem;
  color: #5B6075;
  margin-bottom: 32px;
}

/* CTA BUTTONS */
.cta-btn, .cta-btn.primary {
  display: inline-block;
  background: linear-gradient(90deg, #bfd9ed 0%, #e6e0f6 100%);
  color: #2F3A4C;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: .03em;
  border: none;
  border-radius: 999px;
  padding: 13px 40px;
  margin-top: 16px;
  transition: background .22s, color .18s, box-shadow .18s;
  box-shadow: 0 2px 14px 0 rgba(150,150,160,0.13);
  cursor: pointer;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: linear-gradient(90deg, #eed8ec 0%, #b8d5e2 100%);
  color: #342e41;
  box-shadow: 0 4px 24px 0 rgba(116,143,178,0.17);
  outline: none;
}
.cta-btn:active {
  transform: scale(0.97);
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 20px rgba(180,180,200,0.10);
  position: sticky;
  top: 0;
  z-index: 1001;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  min-height: 72px;
}
.brand-logo img {
  height: 42px;
  max-width: 150px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.main-nav a {
  font-family: 'Roboto', sans-serif;
  font-size: 1.05rem;
  color: #505b66;
  font-weight: 500;
  padding: 2px 5px;
  border-radius: 6px;
  transition: background .14s, color .18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #f3edfa;
  color: #684eb4;
  outline: none;
}
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  margin-left: 12px;
  color: #684eb4;
  cursor: pointer;
  z-index: 1002;
  padding: 6px 10px;
}

.cta-btn.primary {
  margin-left: 32px;
}

/* FOOTER */
footer {
  background: #F0ECE1;
  box-shadow: 0 -2px 16px rgba(116,143,178,0.07);
  padding: 48px 0 12px 0;
  margin-top: 48px;
  border-radius: 32px 32px 0 0;
}
footer .container {
  flex-direction: column;
  gap: 38px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
  margin-bottom: 20px;
}
.footer-main-menu, .footer-menu {
  display: flex;
  gap: 22px;
  margin-bottom: 10px;
}
.footer-main-menu a, .footer-menu a {
  color: #2F3A4C;
  font-family: 'Roboto', sans-serif;
  font-size: 0.99rem;
  opacity: 0.82;
  transition: color .17s, opacity .16s;
}
.footer-main-menu a:hover, .footer-menu a:hover {
  color: #684eb4;
  opacity: 1;
}
.brand-address, .contact-information, .social-links {
  margin-bottom: 10px;
  color: #646c79;
  font-size: 0.97rem;
}
.contact-information a {
  color: #684eb4;
  font-weight: 500;
}
.social-links {
  display: flex;
  gap: 15px;
}

/* SECTION DESIGN */
.about, .features, .services, .team, .testimonials, .cta, .privacy-policy-content, .gdpr-content, .cookies-policy-content, .terms-content, .thank-you-message, .contact-details {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 16px 0 rgba(180,185,210,0.05);
}
.cta {
  background: linear-gradient(96deg, #edeefc 72%, #f6e8f8 100%);
  box-shadow: 0 4px 24px rgba(220,210,230,0.11);
  text-align: center;
  align-items: center;
  margin-bottom: 46px;
}
.cta .content-wrapper {
  align-items: center;
}

/* LISTS INSIDE .text-section */
.text-section ul, .text-section ol {
  margin: 10px 0 16px 24px;
  color: #505572;
  line-height: 1.75;
}
.text-section li {
  padding-bottom: 7px;
  font-size: 1.03rem;
}

/* TABLES, FOR FUTURE-PROOFING */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fafdff;
  border-radius: 12px;
  overflow: hidden;
}
th, td {
  border: 1px solid #ebebf2;
  padding: 12px 18px;
  text-align: left;
}
th {
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  background: #f4f2fa;
}

/* FORMS (if present in future) */
input[type="text"], input[type="email"], textarea {
  background: #F8FAFF;
  border: 1px solid #e4e4ef;
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 1rem;
  margin-bottom: 18px;
  width: 100%;
  transition: border-color .19s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #684eb4;
  outline: none;
}
label {
  font-size: 0.99rem;
  display: block;
  margin-bottom: 6px;
  color: #2F3A4C;
}

/* MOBILE BURGER MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2000;
  background: rgba(245,247,255,0.83);
  backdrop-filter: blur(10px);
  transform: translateX(105%);
  transition: transform 0.35s cubic-bezier(.62,.05,.36,1.12);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  margin: 30px 28px 14px 0;
  font-size: 2.05rem;
  background: none;
  border: none;
  color: #7A869A;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.18s, background .16s;
  border-radius: 50%;
  padding: 4px 10px;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #684eb4;
  background: #f4edfd;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  align-items: center;
  margin-top: 12px;
}
.mobile-nav a {
  color: #2F3A4C;
  font-family: 'Playfair Display', serif;
  font-size: 1.26rem;
  padding: 12px 0;
  font-weight: 600;
  text-align: center;
  width: 100%;
  border-radius: 12px;
  transition: background .14s, color .17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #f6f2fe;
  color: #684eb4;
  outline: none;
}

@media (max-width: 1060px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .feature-item, .card {
    min-width: 190px;
    max-width: 97vw;
  }
}
@media (max-width: 820px) {
  .main-nav {
    gap: 16px;
  }
  .popup-modal {
    max-width: 98vw;
  }
}

/* MOBILE BREAKPOINTS */
@media (max-width: 768px) {
  .container {
    padding: 0 7px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .cta-btn.primary {
    margin-left: 0;
    margin-top: 11px;
  }
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 6px;
    min-height: 64px;
  }
  footer .container {
    gap: 18px;
  }
  .hero {
    padding: 42px 0 34px 0;
    margin-bottom: 25px;
    border-radius: 0 0 32px 32px;
  }
  .hero h1 {font-size: 1.5rem;}
  .hero p {font-size: 1.03rem;}
  section, .section {
    padding: 28px 5px;
    margin-bottom: 35px;
    border-radius: 13px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 17px;
  }
  .footer-main-menu, .footer-menu {
    gap: 13px;
    flex-wrap: wrap;
  }
  .feature-grid, .content-grid, .content-wrapper {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .testimonial-card, .feature-item {
    max-width: 100%;
    min-width: unset;
  }
  .text-image-section, .text-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .cta {padding: 28px 5px;}
}
@media (max-width: 480px) {
  .hero {
    border-radius: 0 0 15px 15px;
    padding: 20px 0 18px 0;
  }
  .cta-btn, .cta-btn.primary {
    font-size: 0.96rem;
    padding: 12px 26px;
  }
}

/* MICRO-INTERACTIONS */
.feature-item img, .card img {
  transition: transform .16s;
}
.feature-item:hover img, .card:hover img {
  transform: scale(1.05) rotate(-3deg);
}

.cta-btn:focus, .mobile-menu-toggle:focus {
  outline: 2px solid #684eb4;
  outline-offset: 2px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: #fff6fa;
  color: #2F3A4C;
  border-top: 2px solid #e9e0ee;
  box-shadow: 0 -2px 22px rgba(140,120,180,0.09);
  padding: 24px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 22px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(.68,.08,.44,1.35), opacity .28s;
  font-size: 1rem;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  visibility: hidden;
}
.cookie-banner .cookie-msg {
  flex: 1 1 350px;
  color: #2F3A4C;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.cookie-banner button {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  border-radius: 18px;
  border: none;
  padding: 8px 19px;
  cursor: pointer;
  transition: background .19s, color .19s, box-shadow .16s;
}
.cookie-banner .accept {
  background: linear-gradient(90deg,#cde4fd 0,#eed8fc 100%);
  color: #2F3A4C;
  font-weight: 600;
  box-shadow: 0 2px 10px 0 rgba(103,78,180,0.07);
}
.cookie-banner .accept:hover {
  background: #efcfff;
  color: #684eb4;
}
.cookie-banner .reject {
  background: #ebf3f7;
  color: #684eb4;
  font-weight: 600;
  border: 1.3px solid #d6d0f6;
}
.cookie-banner .reject:hover {
  background: #f8e7ec;
  color: #b8466d;
}
.cookie-banner .settings {
  background: none;
  color: #877ca7;
  text-decoration: underline;
  padding: 7px 8px;
}
.cookie-banner .settings:hover {
  color: #684eb4;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    padding: 25px 7px 16px 7px;
    gap: 16px;
    font-size: 0.98rem;
    text-align: center;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 7px;
    width: 100%;
    align-items: stretch;
  }
}

/* COOKIE PREFERENCES MODAL */
.popup-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 4000;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 44px rgba(116,143,178,0.19);
  min-width: 300px;
  max-width: 440px;
  width: 94vw;
  padding: 34px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%,-38%) scale(0.91);
  transition: opacity 0.28s, transform 0.28s cubic-bezier(.62,.05,.46,1.11);
}
.popup-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-50%) scale(1);
}
.popup-modal .modal-title {
  font-family: 'Playfair Display';
  font-size: 1.24rem;
  margin-bottom: 4px;
}
.popup-modal label {
  font-size: 1rem;
  margin-bottom: 4px;
}
.cookie-pref-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 16px 0 8px 3px;
}
.cookie-pref-cat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
}
.cookie-pref-cat input[type="checkbox"] {
  accent-color: #684eb4;
  width: 18px; height: 18px;
}
.cat-desc {
  color: #676e80;
  font-size: 0.99rem;
}
.popup-modal .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 13px;
  margin-top: 7px;
}
.popup-modal .save-btn {
  background: linear-gradient(90deg,#cde4fd 0,#eed8fc 100%);
  color: #2F3A4C;
  font-weight: 600;
  border-radius: 15px;
  border: none;
  padding: 7px 19px;
  cursor: pointer;
  transition: background .15s, color .16s;
}
.popup-modal .save-btn:hover {
  background: #efcfff;
  color: #684eb4;
}
.popup-modal .close-btn {
  background: none;
  color: #684eb4;
  border: none;
  font-size: 1.12rem;
  cursor: pointer;
  padding: 7px 14px;
}
.popup-modal .close-btn:hover {
  text-decoration: underline;
  color: #b8466d;
}

/* Focus accessibility for modals */
.popup-modal:focus {
  outline: 2px solid #684eb4;
  outline-offset: 2px;
}

/* COLOR PALETTE SOFT PASTEL */
body {
  background: #F7FAFB;
}
.about, .features, .services, .team, .testimonials, .contact-details, .privacy-policy-content, .gdpr-content, .cookies-policy-content, .terms-content, .thank-you-message {
  background: #fff;
  border-radius: 24px;
}
.hero {
  background: linear-gradient(101deg, #f8f9fc 56%, #F0ECE1 100%);
}
.cta {
  background: linear-gradient(96deg, #edeefc 72%, #f6e8f8 100%);
}
footer {
  background: #F0ECE1;
}

/* MISC: distinctive navigation for accessibility */
.main-nav a:active, .footer-main-menu a:active, .footer-menu a:active {
  color: #684eb4;
}

/* Prevent content overlap, adequate margins */
.card, .feature-item, .testimonial-card {
  margin-bottom: 20px;
}
section:not(:last-child) {
  margin-bottom: 60px;
}

/* Hide visually, but keep for screen readers */
.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

::-webkit-input-placeholder { color: #bdb9c0; }
::-moz-placeholder { color: #bdb9c0; }
:-ms-input-placeholder { color: #bdb9c0; }
::placeholder { color: #bdb9c0; }

/* SCROLLBAR FOR DREAMY SOFT ATMOSPHERE */
::-webkit-scrollbar {
  width: 9px;
  background: #f0ece1;
}
::-webkit-scrollbar-thumb {
  background: #e8e4f6;
  border-radius: 10px;
}

/* -- End Style -- */