/* CSS 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,
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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F8FAFB;
  color: #20435C;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* SOFT PASTEL PALETTE */
:root {
  --primary: #20435C;
  --secondary: #E3821B;
  --accent: #F4F5F7;
  --pastel-blue: #d4e2fa;
  --pastel-peach: #ffe5d0;
  --pastel-green: #daf5e7;
  --pastel-yellow: #fff5b1;
  --pastel-pink: #fddbef;
  --navy: #20435C;
  --white: #fff;
  --gray: #6783a0;
}

/* TYPOGRAPHY */
h1, .cta-btn, .cta-link {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: -1px;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
  line-height: 1.2;
}
h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
}
h3 {
  font-size: 1.32rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: var(--primary);
  margin-top: 32px;
  margin-bottom: 14px;
}
p, ul li, ol li, blockquote {
  font-size: 1rem;
  color: var(--navy);
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 14px;
}
a.cta-link {
  color: var(--secondary);
  font-weight: 500;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.25s;
  text-decoration: underline;
}
a.cta-link:hover,
a.cta-link:focus {
  color: #bc6a14;
}

strong, b {
  font-weight: 600;
}

blockquote {
  background: var(--pastel-blue);
  border-left: 4px solid var(--primary);
  border-radius: 16px;
  padding: 24px 24px 20px 20px;
  margin: 32px 0;
  font-style: italic;
  box-shadow: 0 2px 12px 0 rgba(32,67,92,.10);
}
blockquote span {
  display: block;
  margin-top: 10px;
  color: var(--secondary);
  font-size: 1em;
  font-style: normal;
  font-weight: 500;
}

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 2px 24px 0 rgba(32,67,92,.07);
  padding: 40px 24px;
  margin-bottom: 32px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--pastel-blue);
  border-radius: 28px;
  box-shadow: 0 2px 16px 0 rgba(32,67,92,.08);
  /* add pastel-blur effect to background section for dreamy look */
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--pastel-peach);
  border-radius: 24px;
  box-shadow: 0 2px 16px 0 rgba(32,67,92,.10);
  margin-bottom: 20px;
  position: relative;
  padding: 30px 20px 24px 20px;
  color: var(--navy);
  transition: box-shadow 0.25s, transform 0.22s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(32,67,92,.16);
  transform: translateY(-3px) scale(1.012);
}

.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  min-width: 260px;
  background: #fffaf4;
  border-radius: 22px;
  box-shadow: 0 2px 12px 0 rgba(32,67,92,0.06);
}
.testimonial-card p {
  color: #25405A;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  font-style: normal;
  text-align: center;
}
.testimonial-card span {
  color: var(--secondary);
  font-size: 0.98rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-style: normal;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fddbef;
  border-radius: 17px;
  padding: 24px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 0 rgba(32,67,92,0.04);
  min-width: 220px;
}

/* HEADER STYLES */
header {
  background: linear-gradient(90deg, var(--pastel-blue) 60%, var(--pastel-peach) 100%);
  box-shadow: 0 1px 4px 0 rgba(32,67,92,.06);
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 24px;
}
header nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  padding: 8px 10px;
  border-radius: 8px;
  transition: background .19s, color .19s;
}
header nav a:hover,
header nav a:focus {
  background: var(--pastel-yellow);
  color: var(--secondary);
}
.cta-btn {
  background: var(--secondary);
  color: var(--white) !important;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  border-radius: 22px;
  padding: 11px 26px;
  box-shadow: 0 3px 14px 0 rgba(227,130,27,.10);
  border: none;
  transition: background 0.15s, box-shadow 0.15s, transform 0.18s;
  margin-left: 8px;
  cursor: pointer;
  outline: none;
  display: inline-block;
  margin-top: 0;
}
.cta-btn:hover, .cta-btn:focus {
  background: #bc6a14;
  box-shadow: 0 8px 24px 0 rgba(227,130,27,.16);
  transform: translateY(-2px);
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: var(--primary);
  font-size: 2.1rem;
  padding: 10px 20px 10px 14px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.18s;
  margin-left: 8px;
  z-index: 3000;
}
.mobile-menu-toggle:focus {
  background: var(--pastel-peach);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(250,245,249,0.95);
  backdrop-filter: blur(6px);
  z-index: 3002;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.6,.04,.32,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 24px 16px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  line-height: 1;
  color: var(--primary);
  background: none;
  border: none;
  margin-left: auto;
  margin-bottom: 32px;
  padding: 10px 17px;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.18s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: var(--pastel-pink);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  font-size: 1.18rem;
  color: var(--primary);
  padding: 12px 0;
  border-radius: 8px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  text-align: left;
  font-weight: 500;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:active,
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: var(--pastel-yellow);
  color: var(--secondary);
}

/* MAIN LAYOUT Utility */
main {
  min-height: 57vh;
  padding-bottom: 40px;
}
section {
  margin-bottom: 60px;
  padding: 0;
}

/* TESTIMONIALS, CARDS, ATOUTS, SERVICES */
ul {
  margin-bottom: 18px;
}
ul li {
  margin-bottom: 14px;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
ul li img {
  width: 32px;
  height: 32px;
  display: inline-block;
  background: none;
}
ol {
  margin-bottom: 18px;
  padding-left: 0;
}
ol li {
  margin-bottom: 13px;
  padding-left: 0;
}

/* INPUTS & SELECTS (search/filter) */
input[type="text"], select {
  background: var(--pastel-green);
  border: 1px solid #bad4c2;
  border-radius: 12px;
  padding: 8px 14px;
  font-size: 1rem;
  margin-right: 12px;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 12px;
  outline: none;
  transition: border-color 0.18s, background 0.18s;
}
input[type="text"]:focus,
select:focus {
  border-color: var(--secondary);
  background: #fffef6;
}
input[readonly] {
  cursor: not-allowed;
  background: #e9ebed;
}

/* FOOTER */
footer {
  background: linear-gradient(90deg, var(--pastel-peach) 60%, var(--pastel-blue) 100%);
  color: var(--navy);
  box-shadow: 0 -1px 10px 0 rgba(32,67,92,0.07);
  margin-top: 32px;
  padding-top: 32px;
  font-size: 1rem;
  position: relative;
  z-index: 2;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-columns {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-logo {
  min-width: 90px;
  margin-right: 24px;
  margin-bottom: 18px;
}
.footer-links nav {
  display: flex; flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.footer-links a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 7px;
  padding: 4px 9px;
  transition: background .16s, color .16s;
}
.footer-links a:focus, .footer-links a:hover {
  background: var(--pastel-yellow);
  color: var(--secondary);
}
.footer-contact p, .footer-contact a {
  color: var(--gray);
  font-size: 0.97rem;
  line-height: 1.4;
  margin-bottom: 2px;
}
.footer-social {
  display: flex;
  gap: 20px;
  margin-top: 12px;
}
.footer-social a {
  display: flex;
  align-items: center;
  background: var(--pastel-pink);
  border-radius: 50%;
  padding: 6px;
  transition: background 0.17s;
}
.footer-social a:hover, .footer-social a:focus {
  background: var(--pastel-yellow);
}
.footer-bottom {
  padding: 14px 0 8px 0;
  border-top: 1px solid #ebebf0;
  color: var(--gray);
  font-size: 0.92rem;
  text-align: center;
}

/* BUTTONS & LINKS */
button, input[type="submit"], .cta-btn {
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.15s, transform 0.12s;
  outline: none;
}
button:active {
  transform: scale(0.98);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 4700;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(32,67,92,0.13);
  padding: 25px 18px 21px 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  max-width: 540px;
  margin: 0 auto;
  font-size: 1rem;
  transition: opacity 0.18s, transform 0.31s cubic-bezier(.6,.04,.32,1);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(25px);
}
.cookie-banner-message {
  flex: 1;
  min-width: 180px;
  color: #25405A;
  margin-bottom: 6px;
}
.cookie-banner-btns {
  display: flex;
  gap: 11px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 12px;
  padding: 8px 20px;
  border: none;
  background: var(--pastel-peach);
  color: var(--primary);
  box-shadow: 0 1px 6px 0 rgba(227,130,27,0.05);
  transition: background 0.15s, color 0.15s, box-shadow 0.18s;
}
.cookie-btn.accept {
  background: var(--secondary);
  color: #fff;
  font-weight: 600;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #bc6a14;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #ffe5d0;
  color: var(--secondary);
}
.cookie-btn.settings {
  background: var(--pastel-yellow);
  color: var(--primary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--pastel-green);
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 9990;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(120,150,160,0.36);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 44px 0 rgba(32,67,92,0.17);
  padding: 34px 30px 28px 30px;
  width: 95vw;
  max-width: 390px;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeInZoom 0.35s cubic-bezier(.68,-0.42,.28,1.15);
}
@keyframes fadeInZoom {
  0% { opacity:0; transform: scale(.8); }
  100% { opacity:1; transform: scale(1); }
}
.cookie-modal header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  background: none;
  box-shadow: none;
  padding: 0;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.45rem;
  cursor: pointer;
  border-radius: 8px;
  padding: 6px 14px 6px 6px;
  transition: background 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--pastel-pink);
}
.cookie-category {
  background: var(--pastel-blue);
  border-radius: 13px;
  padding: 10px 16px 10px 16px;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--secondary);
  width: 18px; height: 18px;
}
.cookie-category.disabled {
  color: #aaa;
  opacity: 0.7;
}
.cookie-category.disabled label {
  font-weight: 500;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN: MOBILE FIRST */
@media (max-width: 1280px) {
  .container {
    padding: 0 12px;
  }
  .content-wrapper {
    padding: 34px 10px;
  }
}
@media (max-width: 1024px) {
  .footer-columns {
    flex-direction: column;
    gap: 6px;
  }
}
@media (max-width: 900px) {
  .card-container, .content-grid {
    flex-wrap: wrap;
    gap: 18px;
  }
  .footer-columns {
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 12px;
    min-height: 62px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .content-wrapper, .section {
    padding: 26px 4vw;
    margin-bottom: 22px;
    border-radius: 18px;
  }
  .testimonial-card {
    padding: 14px 8px;
    border-radius: 17px;
    min-width: 0;
  }
  .feature-item {
    padding: 14px 10px;
    min-width: 0;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 2vw;
  }
  h1 {
    font-size: 1.68rem;
    margin-bottom: 18px;
  }
  h2 {
    font-size: 1.3rem;
    margin-bottom: 13px;
  }
  .section {
    padding: 13px 2vw;
    margin-bottom: 26px;
    border-radius: 12px;
  }
  .content-wrapper {
    padding: 13px 1vw;
    margin-bottom: 14px;
    border-radius: 10px;
  }
  .testimonial-card {
    padding: 8px 0;
    margin-bottom: 12px;
  }
  .cookie-banner {
    left: 7px;
    right: 7px;
    padding: 13px 7px 13px 10px;
    font-size: .96rem;
  }
  .cookie-modal {
    padding: 17px 8px 12px 8px;
    min-width: 0;
  }
}

/* FLEXBOX COLUMN ON MOBILE FOR SECTIONS */
@media (max-width: 768px) {
  .text-image-section, .card-container, .content-grid, .footer-columns {
    flex-direction: column;
    gap: 24px;
  }
  .text-image-section {
    align-items: flex-start;
  }
}

/* MICRO-INTERACTIONS */
.cta-btn, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.15s, color 0.12s, box-shadow 0.13s, transform 0.08s;
}
.cta-btn:focus, .cookie-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 1px;
}

/* UTILITIES */
.text-center {
  text-align: center;
}
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.gap-20 { gap: 20px; }

/* Scrollbar styling for dreamy pastel effect */
::-webkit-scrollbar {
  width: 9px;
  background: var(--pastel-pink);
}
::-webkit-scrollbar-thumb {
  background: var(--pastel-peach);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--pastel-yellow);
}

/* Hide unneeded elements for accessibility but not visually */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* DREAMY CARD & SHADOWS */
.card, .content-wrapper, .section, .testimonial-card, .feature-item, .cookie-banner, .cookie-modal {
  box-shadow: 0 2px 18px 0 rgba(32,67,92,0.10);
}

/* Avoid absolute for content, only for decors */

/* Z-INDEX
  - header: 100
  - mobile-menu: 3002
  - cookie-banner: 4700
  - cookie-modal-overlay: 9990
*/