/* RESET & 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, main, 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: 100%;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  background: #F9FAFC;
  color: #325050;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a {
  color: #16443A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFB84D;
  outline: none;
}
im {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  padding-left: 20px;
}
section ul, section ol {
  margin-bottom: 16px;
}
main {
  flex: 1 0 auto;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Lato', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #16443A;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  line-height: 1.1;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p, blockquote, cite {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  color: #3B5D5A;
}
p {
  margin-bottom: 16px;
  font-size: 1rem;
}
strong {
  color: #16443A;
  font-weight: 700;
}
blockquote {
  background: #FFF9ED;
  border-left: 6px solid #FFB84D;
  border-radius: 10px;
  font-style: italic;
  margin-bottom: 16px;
  padding: 20px;
  color: #325050;
  box-shadow: 0 2px 12px 0 rgba(228, 201, 174, .07);
}
cite {
  display: block;
  text-align: right;
  margin-top: 10px;
  color: #8E887D;
  font-size: 0.98rem;
  font-style: normal;
  letter-spacing: 0.01em;
}

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 28px;
  background: #FCFCFE;
  box-shadow: 0 5px 24px 0 rgba(170, 170, 200, 0.07);
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 40px;
    border-radius: 18px;
  }
}
/* HERO SECTION */
.hero {
  background: linear-gradient(120deg, #FFF5EC 0%, #D2F3FF 100%);
  padding: 56px 0 56px 0;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 32px 0 rgba(170, 170, 200, 0.12);
  margin-bottom: 48px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 20px;
}
.hero h1 {
  color: #16443A;
  font-size: 2.7rem;
  margin-top: 0;
}
.hero .subheadline {
  font-size: 1.25rem;
  color: #5CA6A8;
  margin-bottom: 24px;
  font-family: 'Montserrat', 'Lato', Arial, Helvetica, sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .hero {
    border-radius: 0 0 16px 16px;
    padding-top: 32px;
    padding-bottom: 32px;
    margin-bottom: 24px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero .subheadline {
    font-size: 1.05rem;
  }
}

/* MAIN NAVIGATION */
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: transparent;
}
.main-nav img {
  height: 44px;
  width: auto;
  margin-right: 24px;
}
.main-nav a {
  color: #16443A;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
}
.main-nav .button-primary {
  margin-left: 12px;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 700;
}
.main-nav a:hover, .main-nav a:focus {
  background: #EFE8FD;
  color: #2FB2B0;
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 10px;
    font-size: 0.95rem;
  }
  .main-nav img {
    margin-right: 12px;
    height: 38px;
  }
}
@media (max-width: 900px) {
  .main-nav {display: none;}
  .mobile-menu-toggle {display: block;}
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 1002;
  background: #FCFCFE;
  color: #16443A;
  border: none;
  font-size: 2.2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: 0 4px 24px 0 rgba(190,180,180,0.09);
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus {
  outline: 3px solid #FFB84D;
}
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 90vw;
  max-width: 380px;
  height: 100vh;
  background: #FDF8EF;
  box-shadow: -6px 0 32px 0 rgba(180,180,200,0.16);
  z-index: 2100;
  transform: translateX(105%);
  opacity: 0;
  transition: transform 0.28s cubic-bezier(.9,0,.32,1), opacity 0.18s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 26px 0 26px;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: #FEF6F1;
  border: none;
  font-size: 2.25rem;
  color: #16443A;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  align-self: flex-end;
  margin-bottom: 16px;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(200,200,200,0.08);
  transition: background 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #E8ECFB;
  outline: 2px solid #FFB84D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  margin-top: 12px;
}
.mobile-nav a {
  color: #16443A;
  font-size: 1.2rem;
  padding: 13px 8px 13px 0;
  border-radius: 9px;
  font-weight: 500;
  transition: background 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFEBCA;
  color: #2FB2B0;
}

/* FLEX LAYOUTS (from instruction) */
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* END FLEX PATTERNS */

/* FEATURES (for ul.feature-grid) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 20px;
  margin-bottom: 28px;
}
.feature-grid li {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 340px;
  background: #F3F8FD;
  border-radius: 18px;
  padding: 24px 18px 16px 18px;
  box-shadow: 0 4px 18px 0 rgba(180,230,240, 0.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
  transition: box-shadow 0.20s, transform 0.22s;
  border: 1px solid #ECEDF1;
}
.feature-grid li img {
  margin-bottom: 8px;
  width: 38px;
  height: 38px;
}
.feature-grid li h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  margin-bottom: 6px;
  color: #2FB2B0;
}
.feature-grid li p {
  font-size: 0.99rem;
  color: #596777;
}
.feature-grid li:hover,
.feature-grid li:focus-within {
  box-shadow: 0 7px 24px 0 rgba(190,220,255, 0.14);
  transform: translateY(-2px) scale(1.02);
  border-color: #BDE2FC;
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 16px;
  }
  .feature-grid li {min-width: 180px;}
}
@media (max-width: 640px) {
  .feature-grid {flex-direction: column; gap: 20px;}
  .feature-grid li {width: 100%; max-width: 100%;}
}

/* SERVICES SECTION */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 28px;
}
.service-card {
  flex: 1 1 250px;
  min-width: 250px;
  max-width: 320px;
  background: #FEF9F4;
  border-radius: 18px;
  padding: 22px 18px 20px 18px;
  box-shadow: 0 2px 11px 0 rgba(190,190,200,0.09);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1.03rem;
  position: relative;
  border: 1px solid #F6E3CA;
  transition: box-shadow 0.21s, border 0.18s, transform 0.18s;
}
.service-card h3 {
  font-size: 1.08rem;
  margin-bottom: 7px;
  color: #D19B2B;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
}
.service-card strong {
  margin-top: 14px;
  color: #8B5D14;
  font-size: 1.1rem;
}
.service-card:hover {
  box-shadow: 0 8px 32px 0 rgba(247, 205, 140, 0.14);
  border: 1px solid #FFDDB4;
  transform: translateY(-2px) scale(1.012);
  z-index: 2;
}
@media (max-width: 900px) {
  .service-cards {gap: 12px;}
  .service-card {min-width: 180px;}
}
@media (max-width: 600px) {
  .service-cards {flex-direction: column; gap: 18px;}
  .service-card {width: 100%; max-width: 100%;}
}

/* BUTTONS */
.button-primary, .button-secondary {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  transition: background 0.18s, color 0.15s, box-shadow 0.15s;
  border: none;
  cursor: pointer;
  margin-top: 7px;
  margin-bottom: 8px;
  text-align: center;
  box-shadow: 0 2px 12px 0 rgba(190,190,200,0.08);
}
.button-primary {
  background: #FFB84D;
  color: #16443A;
  border: 2px solid #FFDFA7;
}
.button-primary:hover, .button-primary:focus {
  background: #FFD483;
  color: #16443A;
  box-shadow: 0 6px 18px 0 rgba(255, 184, 77, 0.18);
  outline: none;
}
.button-secondary {
  background: #ffffff;
  color: #2FB2B0;
  border: 2px solid #B8E6E4;
}
.button-secondary:hover, .button-secondary:focus {
  background: #F3FCFF;
  color: #28A5A1;
  box-shadow: 0 3px 12px 0 rgba(47, 178, 176, 0.08);
  outline: none;
}
.button-primary:active, .button-secondary:active {
  transform: scale(0.97);
}

/* TESTIMONIALS */
.testimonials {
  background: #F6F7FC;
  border-radius: 24px;
  box-shadow: 0 5px 20px 0 rgba(190,230,240,0.04);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials h2 {
  text-align: center;
  margin-bottom: 32px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(245,190,120,0.11);
  padding: 28px 26px 18px 26px;
  max-width: 450px;
  min-width: 260px;
  margin-bottom: 20px;
  border: 1px solid #F7EDD8;
  transition: box-shadow 0.18s, border 0.18s, transform 0.18s;
}
.testimonial-card blockquote {
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 7px;
  color: #16443A;
}
.testimonial-card cite {
  color: #7A7450;
  font-weight: 600;
  font-size: 1rem;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 14px 32px 0 rgba(247,205,140,0.22);
  border: 1px solid #FFD48F;
  transform: translateY(-2px) scale(1.015);
}
/* Ensure contrast and readability for card text */
.testimonial-card, .testimonial-card blockquote, .testimonial-card cite {
  color: #16443A;
}

@media (max-width: 880px) {
  .testimonial-slider {gap: 16px;}
  .testimonial-card {min-width: 200px;}
}
@media (max-width: 600px) {
  .testimonial-slider, .testimonial-card {
    flex-direction: column;
    max-width: 100%;
    min-width: unset;
  }
  .testimonial-card {padding: 18px 12px 14px 12px; margin-bottom: 14px;}
}

/* ABOUT / TEXT BLOCKS */
.text-section {
  margin-bottom: 18px;
  font-size: 1.01rem;
}
.text-section ul, .text-section ol {
  margin-bottom: 18px;
  padding-left: 26px;
}
.text-section li {
  margin-bottom: 8px;
  font-size: 1rem;
}

/* CONTACT INFO */
.contact-info {
  background: #F2FCF6;
  border-radius: 19px;
  margin-bottom: 32px;
  padding: 34px 20px;
  box-shadow: 0 3px 14px 0 rgba(192,230,212,0.06);
}
.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-info ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.07rem;
  color: #16443A;
}
.contact-info ul img {
  width: 22px;
  height: 22px;
  margin-right: 6px;
}

/* FOOTER */
footer {
  background: #F6F7FC;
  position: relative;
}
footer .container {
  padding-top: 24px;
  padding-bottom: 15px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 60px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-brand img {
  width: 50px;
  height: 50px;
  margin-bottom: 6px;
}
.footer-brand p {
  font-size: 1.04rem;
  color: #2FB2B0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
}
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #64727A;
  font-size: 0.97rem;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 4px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-nav a {
  color: #16443A;
  font-size: 1rem;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FFB84D;
}
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}
.footer-social a img {
  width: 32px;
  height: 32px;
  transition: filter 0.18s;
  border-radius: 50%;
  background: #FEF9F4;
  box-shadow: 0 1px 5px 0 rgba(240,200,120,0.09);
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: brightness(1.2);
  background: #FFE6B0;
}
footer p {
  text-align: center;
  color: #8E887D;
  font-size: 0.98rem;
  margin: 0 0 7px 0;
}
@media (max-width: 860px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 3000;
  background: #FFFAF3;
  color: #16443A;
  box-shadow: 0 -4px 32px 0 rgba(232, 183, 86, 0.09);
  padding: 22px 16px 18px 16px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.23s, opacity 0.2s;
  font-size: 1rem;
  border-radius: 20px 20px 0 0;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 1 1 0;
  color: #3B5D5A;
  margin-right: 16px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
}
.cookie-banner button {
  font-size: 0.99rem;
  border-radius: 16px;
  border: none;
  margin-bottom: 0;
  padding: 8px 18px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  cursor: pointer;
  transition: background 0.17s, color 0.13s, box-shadow 0.13s;
}
.cookie-banner .cookie-accept {
  background: #FFB84D;
  color: #16443A;
  border: 1.6px solid #FFDFA7;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: #FFD483;
}
.cookie-banner .cookie-reject {
  background: #F8F2E2;
  color: #D19B2B;
  border: 1.6px solid #FFD678;
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: #FFDFA7;
}
.cookie-banner .cookie-settings {
  background: #F3FCFF;
  color: #2FB2B0;
  border: 1.6px solid #B8E6E4;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #E8FAFE;
  color: #207C78;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 7px 16px 7px;
    border-radius: 12px 12px 0 0;
  }
  .cookie-banner .cookie-actions {gap:8px;}
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3200;
  inset: 0;
  background: rgba(20, 68, 58, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.18s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  width: 96vw;
  max-width: 416px;
  background: #FDF9F4;
  color: #16443A;
  border-radius: 22px;
  box-shadow: 0 4px 32px 0 rgba(247,190,100, 0.13);
  padding: 36px 30px 29px 30px;
  font-size: 1rem;
  position: relative;
  animation: modalPop 0.18s ease;
}
@keyframes modalPop {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  margin-bottom: 13px;
  color: #D19B2B;
  font-size: 1.27rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1.2px solid #F7EDD8;
  margin-bottom: 13px;
  padding: 9px 0 5px 0;
}
.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.cookie-category label {
  font-size: 1.04rem;
  color: #16443A;
}
.cookie-category .toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #DFE7EF;
  border-radius: 13px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-category .toggle:checked {
  background: #FFB84D;
}
.cookie-category .toggle:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.18s;
}
.cookie-category .toggle:checked:before {
  transform: translateX(15px);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 22px;
}
.cookie-modal-actions button {
  border-radius: 16px;
  border: none;
  padding: 9px 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.cookie-modal-actions .cookie-accept {
  background: #FFB84D;
  color: #16443A;
  border: 1.4px solid #FFDFA7;
}
.cookie-modal-actions .cookie-accept:hover {
  background: #FFD483;
}
.cookie-modal-actions .cookie-reject {
  background: #F3FCFF;
  color: #2FB2B0;
  border: 1.4px solid #B8E6E4;
}
.cookie-modal-actions .cookie-reject:hover {
  background: #E8FAFE;
}
.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #16443A;
  cursor: pointer;
  padding: 0;
  transition: color 0.18s;
}
.cookie-modal-close:hover {
  color: #FFB84D;
}

@media (max-width: 650px) {
  .cookie-modal { padding: 18px 8px 14px 8px; }
}

/* FORM ELEMENTS */
input, textarea, select {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.05rem;
  padding: 11px 15px;
  border: 1.4px solid #ECE9F3;
  border-radius: 12px;
  background: #F8FAFF;
  outline: none;
  margin-bottom: 15px;
  width: 100%;
  transition: border 0.16s, box-shadow 0.16s;
  color: #163A31;
}
input:focus, textarea:focus, select:focus {
  border-color: #FFB84D;
  box-shadow: 0 1px 8px 0 #FFE6B0;
}

label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: #2FB2B0;
  display: block;
}

/* MISC */
::-webkit-input-placeholder { color: #A5B0BB; }
:-ms-input-placeholder { color: #A5B0BB; }
::placeholder { color: #A5B0BB; }

hr {
  border: 0;
  border-top: 1.5px solid #EDDFCB;
  margin: 18px 0;
}

/* SCROLLBAR */
body {
  scrollbar-color: #FFB84D #FCFCFA;
  scrollbar-width: thin;
}
::-webkit-scrollbar { width: 10px; background: #FCFCFA; }
::-webkit-scrollbar-thumb { background: #FFD98B; border-radius: 7px; }
::-webkit-scrollbar-thumb:hover { background: #FFB84D; }

/* MEDIA QUERIES / RESPONSIVE */
@media (max-width: 1024px) {
  .container { max-width: 96vw; padding-left: 4vw; padding-right: 4vw; }
}
@media (max-width: 700px) {
  h1 { font-size: 1.50rem; }
  h2 { font-size: 1.22rem; }
  h3 { font-size: 1.03rem; }
  .container { padding-left: 2vw; padding-right: 2vw; }
}
@media (max-width: 500px) {
  .section, .testimonials { padding-left: 3vw; padding-right: 3vw; }
  .footer-brand img { width: 34px; height: 34px; }
}

/* ANIMATION UTILS */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* ACCESSIBILITY */
:focus {
  outline: 2px dashed #FFB84D;
  outline-offset: 2px;
}

/* END OF MAIN STYLE.CSS */