/* ===================================================== RESET & BASE ===================================================== */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #243040;
  background-color: #F9FAFB;
  min-height: 100vh;
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  background: none;
  transition: color 0.2s;
}
button {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
:focus {
  outline: 2px solid #BDD5C8;
  outline-offset: 2px;
}

/* Font imports (Google Fonts suggested) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');

/* ================== COLORS AND VARIABLES FOR FALLBACKS ================== */
:root {
  --brand-primary: #243040;
  --brand-secondary: #BDD5C8;
  --brand-accent: #F7C873;
  --brand-background: #F4F6F8;
  --pastel-blue: #D2E0F7;
  --pastel-green: #BDD5C8;
  --pastel-lilac: #E3D7F5;
  --pastel-yellow: #FDF2CE;
  --pastel-pink: #F7D1D1;
}

/* ===================================================== LAYOUT CONTAINERS ===================================================== */
.container {
  width: 100%;
  max-width: 1170px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 24px 0 rgba(143, 170, 223, 0.07);
  transition: box-shadow 0.2s;
}

/* ===================================================== TYPOGRAPHY ===================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #243040;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1.1;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, li, address {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  color: #243040;
}
strong {
  font-weight: 700;
  color: #243040;
}
small {
  font-size: 0.88rem;
  color: #5B7F73;
}

.text-section {
  font-size: 1.06rem;
  color: #2a3846;
  background: transparent;
  padding-bottom: 4px;
}

/* ===================================================== HEADER & NAVIGATION ===================================================== */
header {
  width: 100%;
  background: linear-gradient(90deg, #FDF2CE 0%, #E3D7F5 100%);
  box-shadow: 0 4px 32px 0 rgba(243, 223, 159, 0.13);
  padding-top: 16px;
  padding-bottom: 10px;
  margin-bottom: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: #243040;
  padding: 8px 14px;
  border-radius: 10px;
  transition: background 0.13s, color 0.13s;
}
header nav a:hover,
header nav a:focus {
  background: var(--brand-secondary);
  color: #18222e;
}
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #243040;
  background: linear-gradient(90deg, #F7C873 0%, #FDF2CE 100%);
  padding: 12px 32px;
  border-radius: 35px;
  font-size: 1.10rem;
  box-shadow: 0 2px 16px 0 rgba(243, 215, 116, 0.08);
  margin-left: 16px;
  border: none;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  color: #fff;
  background: linear-gradient(90deg, #FDF2CE 0%, #F7C873 100%);
  box-shadow: 0 4px 28px 0 rgba(247, 200, 115, 0.14);
}

/* Mobile burger menu toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 111;
  width: 48px;
  height: 48px;
  background: linear-gradient(90deg, #F7D1D1 0%, #E3D7F5 100%);
  border-radius: 50%;
  border: none;
  font-size: 2rem;
  color: #243040;
  box-shadow: 0 2px 16px 0 rgba(47, 88, 136, 0.03);
  transition: background 0.14s, box-shadow 0.14s, color 0.13s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #F7C873;
  color: #fff;
}

/* Hide desktop nav, show burger on mobile */
@media (max-width: 900px) {
  header nav,
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ============================= MOBILE NAV MENU ============================= */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: linear-gradient(90deg, #BDD5C8 0%, #E3D7F5 100%);
  box-shadow: 0 6px 42px 0 rgba(189, 213, 200, 0.13);
  transform: translateX(-100vw);
  transition: transform 0.41s cubic-bezier(0.5, 0.2, 0.2, 1);
  z-index: 1200;
  padding: 0;
  opacity: 1;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: #F7D1D1;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  color: #243040;
  z-index: 1210;
  box-shadow: 0 1px 7px 0 rgba(243, 215, 116, 0.08);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin: 85px 0 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: #243040;
  padding: 12px 24px;
  border-radius: 16px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E3D7F5;
  color: #443a60;
}

/* Prevent page scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* ===================================================== MAIN SECTIONS + FLEX LAYOUTS ===================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 19px 0 rgba(180, 195, 223, 0.07);
  position: relative;
  transition: box-shadow 0.18s, transform 0.15s;
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 32px 0 rgba(243, 215, 116, 0.16);
  transform: translateY(-2px) scale(1.018);
}

.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: flex-start;
  gap: 20px;
  background: #F4F6F8;
  border: 1.5px solid #BDD5C8;
  border-radius: 18px;
  box-shadow: 0 3px 16px 0 rgba(189, 213, 200, 0.09);
  padding: 20px;
  margin-bottom: 20px;
  max-width: 540px;
  transition: box-shadow 0.21s;
}
.testimonial-card strong {
  color: #243040;
  font-size: 1.04rem;
  margin-top: -3px;
}
.testimonial-card p {
  color: #1F2937;
  font-size: 1.07rem;
}
.testimonial-card:hover {
  box-shadow: 0 12px 36px 0 rgba(247, 200, 115, 0.11);
}

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

ul > li, ol > li {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.04rem;
}
ul > li img, .feature-item img {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 1px 4px 0 rgba(189, 213, 200, 0.07); 
  object-fit: contain;
}

/* ===================================================== FOOTER ===================================================== */
footer {
  background: linear-gradient(90deg, #BDD5C8 0%, #FDF2CE 100%);
  padding: 36px 0 18px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
footer nav {
  display: flex;
  gap: 25px;
  margin-bottom: 6px;
  margin-top: 7px;
}
footer nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #243040;
  font-weight: 500;
  border-radius: 10px;
  padding: 5px 10px;
  transition: background 0.14s, color 0.14s;
}
footer nav a:hover, footer nav a:focus {
  background: #F7D1D1;
  color: #7F5968;
}
footer address {
  font-size: 1.01rem;
  color: #567979;
  margin-bottom: 7px;
}
footer small {
  color: #98A89A;
}

/* ===================================================== SPACING ===================================================== */
main {
  background: #F9FAFB;
  min-height: 61vh;
  padding-bottom: 32px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 900px) {
  section {
    padding: 32px 5vw;
    margin-bottom: 40px;
  }
}
@media (max-width: 600px) {
  section {
    padding: 24px 2vw 28px 2vw;
    margin-bottom: 28px;
  }
}

/* ===================================================== BUTTONS ===================================================== */
button, .cta-btn, .cookie-btn {
  cursor: pointer;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  transition: background 0.16s, color 0.16s, box-shadow 0.18s;
}

.cookie-btn {
  background: #F7C873;
  color: #243040;
  border-radius: 20px;
  padding: 9px 26px;
  font-size: 1.04rem;
  font-weight: 700;
  margin: 0 8px 0 0;
  box-shadow: 0 2px 12px 0 rgba(247, 200, 115, 0.12);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #FDF2CE;
  color: #995c09;
}

/* ===================================================== COOKIE CONSENT BANNER & MODAL ===================================================== */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(150px);
  opacity: 0;
  width: 99vw;
  max-width: 540px;
  background: linear-gradient(90deg, #F7D1D1 0%, #E3D7F5 100%);
  box-shadow: 0 16px 42px 0 rgba(243, 215, 116, 0.11);
  border-radius: 24px 24px 0 0;
  z-index: 1300;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 26px 26px 26px 32px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  transition: transform 0.42s cubic-bezier(0.55,0,0.1,1), opacity 0.32s;
}
.cookie-banner.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.cookie-banner p {
  color: #243040;
  font-size: 1.01rem;
  margin-bottom: 12px;
}
.cookie-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 5px;
}
.cookie-banner .cookie-btn:last-of-type {
  margin-right: 0;
}
.cookie-banner-settings {
  background: #F7C873;
  color: #243040;
}

/* Cookie Modal overlay & box */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(70,80,100,0.22);
  z-index: 1400;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fade-in 0.2s;
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: linear-gradient(90deg, #BDD5C8 0%, #E3D7F5 100%);
  border-radius: 25px;
  max-width: 370px;
  width: 94vw;
  padding: 32px 26px 24px 26px;
  box-shadow: 0 12px 54px 0 rgba(187, 213, 200, 0.15);
  color: #243040;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modal-bounce-in 0.36s cubic-bezier(0.51,0.04,0.39,1.1);
}
@keyframes modal-bounce-in {
  0% { transform: scale(0.6); opacity: 0.2; }
  70% { transform: scale(1.07); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.32rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  background: #fff;
  padding: 10px 16px;
  margin-bottom: 9px;
  box-shadow: 0 1px 7px 0 rgba(189, 213, 200, 0.06);
}
.cookie-category strong {
  color: #243040;
}
.cookie-category input[type='checkbox'] {
  accent-color: #F7C873;
  width: 22px;
  height: 22px;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  background: #F7D1D1;
  color: #243040;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.4rem;
}

/* ===================================================== FORMS ===================================================== */
input, textarea, select {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  border-radius: 11px;
  padding: 12px 16px;
  border: 1.3px solid #BDD5C8;
  background: #F9FAFB;
  color: #243040;
  font-size: 1.03rem;
  margin-bottom: 18px;
  width: 100%;
  box-shadow: none;
  transition: border-color 0.15s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: #F7C873;
}
label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #243040;
  font-size: 1.01rem;
  margin-bottom: 6px;
  display: inline-block;
}

/* ===================================================== ANIMATIONS & MICRO-INTERACTIONS ===================================================== */
@media (hover: hover) {
  .cta-btn:hover, .cta-btn:focus {
    filter: brightness(1.05) saturate(1.05);
    box-shadow: 0 9px 44px rgba(247, 200, 115, 0.18);
  }
  .card:hover {
    box-shadow: 0 8px 38px 0 rgba(143, 170, 223, 0.13);
  }
  .testimonial-card:hover {
    box-shadow: 0 14px 40px 0 rgba(189, 213, 200, 0.15), 0 4px 13px #F7C87388;
  }
  .mobile-nav a:hover {
    background: #F7C873;
    color: #ffffff;
  }
}

/* ===================================================== RESPONSIVE STYLES ===================================================== */
@media (max-width: 990px) {
  .container {
    max-width: 92vw;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.35rem;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-direction: row;
  }
  .content-grid, .card-container, .section {
    flex-direction: column;
    gap: 22px !important;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding-left: 7px;
    padding-right: 7px;
  }
  .content-wrapper {
    gap: 16px;
  }
  h1 {
    font-size: 1.47rem;
    margin-bottom: 11px;
  }
  h2 {
    font-size: 1.13rem;
    margin-bottom: 9px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 17px;
  }
  footer .container {
    gap: 7px;
    padding-bottom: 12px;
  }
  .mobile-menu {
    padding: 0;
  }
}
@media (max-width: 480px) {
  .section {
    padding: 16px 3vw 17px 3vw;
    margin-bottom: 18px;
  }
  .card {
    padding: 13px 8px 13px 8px;
  }
  h1 {
    font-size: 1.07rem;
    margin-bottom: 7px;
  }
  h2 {
    font-size: 1rem;
  }
  .cookie-banner {
    padding: 18px 12px 18px 14px;
    border-radius: 13px 13px 0 0;
  }

  footer address, footer nav a {
    font-size: 0.95rem;
  }
}

/* ===================================================== SOFT PASTEL CARD/BADGE ELEMENTS ===================================================== */
.card, .testimonial-card, .cookie-modal {
  border-radius: 17px;
  box-shadow: 0 3px 18px 0 rgba(143, 170, 223, 0.08);
}
.card {
  background: #FFFFFF;
}

@media (max-width: 670px) {
  .content-grid, .card-container, .feature-item {
    flex-direction: column;
    gap: 18px !important;
  }
  .testimonial-card {
    margin-bottom: 16px;
    gap: 13px;
  }
}

/* ===================================================== MISC & UTILITY CLASSES ===================================================== */
.hide,
[hidden] {
  display: none !important;
}
.gap-20 {
  gap: 20px !important;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.mt-3 { margin-top: 12px !important; }
.mt-6 { margin-top: 24px !important; }
.mb-3 { margin-bottom: 12px !important; }
.mb-6 { margin-bottom: 24px !important; }

/* ==== Utility pastel backgrounds for highlights or separating sections (use in HTML as needed) ==== */
.bg-pastel-blue { background: #D2E0F7 !important; }
.bg-pastel-green { background: #BDD5C8 !important; }
.bg-pastel-lilac { background: #E3D7F5 !important; }
.bg-pastel-yellow { background: #FDF2CE !important; }
.bg-pastel-pink { background: #F7D1D1 !important; }

/* ========================== END =========================== */
