/* RESET & BASE ------------------------------------------------------------*/
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;
}

/* HTML5 display-role reset */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background-color: #F4F9FB;
  color: #383A4E;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #46BDA7;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #28206E;
  text-decoration: underline;
}
ul, ol {
  margin-left: 20px;
  margin-bottom: 16px;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}

/* SCROLLBAR styling for soft touch */
::-webkit-scrollbar {
  width: 8px;
  background: #ece8f6;
}
::-webkit-scrollbar-thumb {
  background: #dfe3ef;
  border-radius: 6px;
}

/* PASTEL COLOR PALETTE ---------------------------------------------*/
:root {
  --brand-primary: #28206E;
  --brand-secondary: #46BDA7;
  --brand-accent: #F4F9FB;
  --brand-gradient1: #B3C8F8;  /* soft blue */
  --brand-gradient2: #C6F2E6;  /* soft mint */
  --brand-gradient3: #F5E6EE;  /* lavender pink */
  --brand-gradient4: #FFF5EC;  /* peach/cream */
  --dark-text: #292B38;
  --gray: #888BBB;
}

/* TYPOGRAPHY -------------------------------------------------------*/
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--brand-primary);
  margin-bottom: 20px;
  letter-spacing: -1px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--brand-primary);
  margin-bottom: 16px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--brand-secondary);
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: var(--brand-primary);
}
p, li, blockquote, cite {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--dark-text);
}
p, ul, ol {
  margin-bottom: 18px;
  font-size: 1rem;
}
blockquote {
  background: var(--brand-gradient3);
  border-left: 4px solid var(--brand-secondary);
  border-radius: 24px;
  padding: 20px 32px;
  font-style: italic;
  color: var(--brand-primary);
  margin: 24px 0;
}
cite {
  font-size: 1rem;
  color: var(--brand-secondary);
  font-style: normal;
  margin-top: 8px;
  display: inline-block;
  letter-spacing: 0.5px;
}
strong {
  font-weight: 700;
  color: var(--brand-primary);
}

/* SPACING & CONTAINER PATTERNS ------------------------------------*/
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1100px;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 36px;
  background: var(--brand-gradient4);
}

/* FLEX CONTAINERS Patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--brand-accent);
  border-radius: 24px;
  box-shadow: 0 2px 16px 0 rgba(81,86,120, 0.07), 0 0.5px 2.5px 0 rgba(81,86,120,0.06);
  padding: 24px 20px;
  min-width: 260px;
  flex: 1 1 260px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 28px 0 rgba(81,86,120,0.18);
  z-index: 2;
}
.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 {
  background: var(--brand-gradient3);
  color: var(--dark-text);
  border-radius: 24px;
  box-shadow: 0 2px 12px 0 rgba(80,86,150,0.08);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  min-width: 240px;
  flex: 1 1 320px;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.testimonial-card:hover {
  transform: scale(1.015);
  background: #FBEFFD;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--brand-gradient2);
  border-radius: 18px;
  padding: 18px 20px;
  margin-bottom: 20px;
  min-width: 220px;
  transition: box-shadow 0.18s, background 0.13s;
  box-shadow: 0 1px 8px 0 rgba(81,86,120,0.05);
}
.feature-item:hover {
  background: #eafaf3;
  box-shadow: 0 4px 14px 0 rgba(81,86,120,0.09);
}

/* HERO & CTA --------------------------------------------*/
.hero {
  background: linear-gradient(120deg, var(--brand-gradient1) 0%, var(--brand-gradient2) 70%, var(--brand-gradient3) 100%);
  border-radius: 40px;
  margin-bottom: 50px;
  padding: 48px 0 56px 0;
  box-shadow: 0 4px 24px 0 rgba(100,108,170,0.09);
}
.hero h1 {
  font-size: 2.7rem;
  color: var(--brand-primary);
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #435077;
}
.hero .btn-primary {
  font-size: 1.1rem;
}

/* BUTTONS -----------------------------------------------*/
.btn-primary, .mobile-nav a.btn-primary {
  display: inline-block;
  background: var(--brand-secondary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.12rem;
  border-radius: 32px;
  padding: 12px 32px;
  border: none;
  transition: background 0.18s, color 0.18s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 14px 0 rgba(81,86,120,0.10);
  margin-top: 10px;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--brand-primary);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 18px 0 rgba(65,86,120,0.15);
  text-decoration: none;
}
.btn-secondary {
  background: var(--brand-gradient1);
  color: var(--brand-primary);
  border-radius: 32px;
  padding: 10px 26px;
  border: none;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.14s, color 0.14s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--brand-secondary);
  color: #fff;
}

/* HEADER & NAVIGATION -----------------------------------*/
header {
  background: var(--brand-accent);
  box-shadow: 0 3px 24px 0 rgba(90,112,170,0.07);
  position: relative;
}
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 70px;
  padding: 14px 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 10px;
  border-radius: 18px;
  transition: background 0.16s, color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--brand-gradient2);
  color: var(--brand-secondary);
}
.main-nav a.btn-primary {
  margin-left: 18px;
  padding: 10px 28px;
  font-size: 1.03rem;
}

/* MOBILE NAVIGATION -------------------------------------*/
.mobile-menu-toggle {
  display: none;
  background: var(--brand-secondary);
  color: #fff;
  border-radius: 50%;
  border: none;
  font-size: 2.1rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  box-shadow: 0 2px 8px 0 rgba(80,170,160,0.09);
  transition: background 0.14s, box-shadow 0.14s;
  z-index: 1001;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(80,86,150,0.15);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right:0; bottom:0;
  background: rgba(244,249,251, 0.92);
  backdrop-filter: blur(3px);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.7,.2,.3,1);
  z-index: 2010;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0;
  width: 100%;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--brand-secondary);
  color: #fff;
  border-radius: 50%;
  border: none;
  font-size: 2.1rem;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 2011;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 90px;
  margin-left: 40px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--brand-primary);
  padding: 12px 16px;
  border-radius: 24px;
  transition: background 0.12s, color 0.14s;
  width: fit-content;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-gradient2);
  color: var(--brand-secondary);
}
.mobile-nav a.btn-primary {
  padding: 14px 36px;
  font-size: 1.2rem;
  margin-top: 18px;
}

/* MAIN CONTENT ------------------------------------------*/
section {
  margin-bottom: 40px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.section-testimonials {
  background: var(--brand-gradient4);
  border-radius: 36px;
  margin-bottom: 40px;
  padding: 33px 0 40px 0;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 12px;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 18px;
}
.ratings-overview {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--brand-primary);
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.impact-stories {
  margin-top: 20px;
  background: #f4f9fb;
  border-radius: 18px;
  padding: 20px 18px;
  box-shadow: 0 2px 8px 0 rgba(111,151,170,0.05);
}

/* FAQs --------------------------------------------------*/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: var(--brand-gradient2);
  border-radius: 18px;
  padding: 20px 22px 15px 22px;
  margin-bottom: 8px;
  box-shadow: 0 1px 10px 0 rgba(70,170,143,0.06);
  transition: background 0.16s;
}
.faq-item h2 {
  font-size: 1.1rem;
  color: var(--brand-primary);
}
.faq-item p {
  color: var(--dark-text);
  font-size: 1rem;
}
.contact-prompt {
  margin-top: 18px;
  padding: 18px 20px;
  background: var(--brand-gradient3);
  border-radius: 16px;
}
.contact-prompt h3 {
  margin-bottom: 10px;
}
.contact-information {
  background: var(--brand-gradient2);
  border-radius: 22px;
  padding: 24px 18px;
  margin-bottom: 16px;
  box-shadow: 0 2px 7px 0 rgba(64,100,120,0.05);
}
.map-location {
  margin-top: 14px;
  background: #f9feff;
  border-radius: 18px;
  padding: 16px 14px;
}

/* FOOTER ------------------------------------------------*/
footer {
  background: #f9fcfd;
  color: var(--brand-primary);
  padding: 30px 0 16px 0;
  margin-top: 28px;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -4px 16px 0 rgba(80,86,150,0.10);
}
.footer-grid {
  display: flex;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-grid > div, .footer-nav {
  margin-bottom: 20px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: var(--brand-primary);
  font-size: 1rem;
  transition: color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand-secondary);
  text-decoration: underline;
}
.footer-contact p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--gray);
}

/* CARDS & ELEMENTS --------------------------------------*/
.feature-grid, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid > div {
  flex: 1 1 240px;
  background: var(--brand-gradient2);
  border-radius: 20px;
  padding: 18px 15px;
  margin-bottom: 14px;
  box-shadow: 0 1px 7px 0 rgba(80,86,150,0.06);
  transition: box-shadow 0.12s, background 0.1s;
}
.feature-grid > div:hover {
  background: #e5f8ef;
  box-shadow: 0 2px 17px 0 rgba(60,186,164,0.08);
  transform: translateY(-2px);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* MODAL & OVERLAY for Cookie Consent --------------------*/
.cookie-banner {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 18px;
  z-index: 9999;
  background: #fffbea;
  border-radius: 24px;
  box-shadow: 0 3px 35px 0 rgba(60,60,100,0.07);
  padding: 24px 26px;
  font-size: 1rem;
  color: var(--brand-primary);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  animation: fadeInBanner 0.5s;
}
@keyframes fadeInBanner {
  from { opacity: 0; transform: translateY(48px);} 
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-banner button {
  padding: 8px 22px;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 8px;
  box-shadow: 0 1px 8px 0 rgba(90,180,134,0.07);
  border: none;
  transition: background 0.14s, color 0.14s;
}
.cookie-banner .accept {
  background: var(--brand-secondary);
  color: #fff;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: var(--brand-primary);
  color: #fff;
}
.cookie-banner .reject {
  background: #F6E3E9;
  color: var(--brand-primary);
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  background: var(--brand-secondary);
  color: #fff;
}
.cookie-banner .settings {
  background: var(--brand-gradient2);
  color: var(--brand-secondary);
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: var(--brand-secondary);
  color: #fff;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 10001;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(40, 32, 110, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInOverlay 0.25s;
}
@keyframes fadeInOverlay {
  from { opacity: 0;} to {opacity: 1;}
}
.cookie-modal {
  background: #fff;
  border-radius: 26px;
  padding: 38px 28px 22px 28px;
  min-width: 320px;
  max-width: 98vw;
  box-shadow: 0 6px 48px 0 rgba(40,32,110,0.20);
  animation: fadeInModal 0.35s;
  color: var(--brand-primary);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@keyframes fadeInModal {
  from { opacity: 0; transform: scale(0.93);}
  to { opacity: 1; transform: scale(1);}
}
.cookie-modal h2 {
  font-size: 1.4rem;
  margin-top: 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 14px 0;
}
.cookie-category label {
  font-size: 1rem;
  color: var(--brand-primary);
}
.cookie-modal input[type="checkbox"]:disabled + label {
  color: #dedede;
  font-style: italic;
}
.cookie-modal .cookie-modal-buttons {
  display: flex;
  gap: 20px;
  margin-top: 22px;
}
.cookie-modal button {
  padding: 8px 22px;
  font-size: 1rem;
  border-radius: 16px;
}
.cookie-modal .accept {
  background: var(--brand-secondary);
  color: #fff;
}
.cookie-modal .reject {
  background: #fae6ef;
  color: var(--brand-primary);
}
.cookie-modal .close {
  background: #f0f3f8;
  color: var(--brand-secondary);
}
.cookie-modal .accept:hover,
.cookie-modal .accept:focus {
  background: var(--brand-primary);
  color: #fff;
}
.cookie-modal .reject:hover,
.cookie-modal .reject:focus {
  background: var(--brand-secondary);
  color: #fff;
}
.cookie-modal .close:hover,
.cookie-modal .close:focus {
  background: var(--brand-gradient1);
  color: var(--brand-primary);
}

/* THANK YOU SECTION -------------------------------------*/
.thank-you-message, .next-steps {
  font-size: 1.16rem;
  margin-bottom: 18px;
  color: var(--brand-primary);
}

/* ACCESSIBILITY & UTILITY --------------------------------*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* MEDIA QUERIES: RESPONSIVE DESIGN ----------------------*/
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
  }
  .footer-grid {
    gap: 18px;
  }
}
@media (max-width: 920px) {
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
   }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .nav-bar {
    gap: 12px;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
  .hero {
    padding: 33px 0 37px 0;
    margin-bottom: 35px;
  }
  .footer-grid {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
  }
  .feature-grid, .card-grid, .testimonial-slider, .testimonial-list {
    flex-direction: column;
    gap: 18px;
  }
  .section, .section-testimonials {
    padding: 18px 8px;
    border-radius: 24px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .content-grid {
    flex-direction: column;
    gap: 13px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  .hero h1 {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 20px 12px;
  }
  .cookie-modal {
    padding: 16px 8px 10px 8px;
    min-width: 95vw;
  }
}

/* END OF CSS "soft_pastel" DESIGN FOR INDURFIGHT BRAND */
