/* --- CSS 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,menu,ol,ul,li,fieldset,form,label,legend,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,main,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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: 'Lato', Arial, sans-serif;
  background: #F7F4F0;
  color: #25313E;
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
  line-height: 1.6;
}
ul,ol {
  padding-left: 20px;
  margin: 0 0 24px 0;
}
a {
  color: #9C7A4A;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #9C7A4A;
  outline-offset: 2px;
}
a:hover {
  color: #FFAB3C;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #25313E;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 24px;
  line-height: 1.15;
  font-family: 'Playfair Display', serif;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
strong {
  font-weight: 700;
}
small {
  font-size: 90%;
  opacity: 0.65;
  font-family: inherit;
}
section {
  width: 100%;
}

/* --- UTILITY CLASSES --- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.text-section {
  margin-bottom: 24px;
}

/* SPACING PATTERNS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(43,35,123,0.09);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 20px;
  min-width: 280px;
  transition: box-shadow 0.22s, transform 0.21s;
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(43,35,123,0.12);
  transform: translateY(-4px) scale(1.03);
}
.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;
  background: #fff;
  color: #25313E;
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 2px 20px 0 rgba(42,35,120,0.11);
  margin-bottom: 32px;
  transition: box-shadow 0.21s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px 0 rgba(43,35,123,0.18);
  transform: scale(1.02);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* --- HEADER & NAVIGATION --- */
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 14px 0 14px 0;
  box-shadow: 0 2px 10px 0 rgba(37,49,62,0.06);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 80;
}
.main-header > a img {
  height: 48px;
  transition: transform 0.2s;
}
.main-header > a img:hover {
  transform: rotate(-3deg) scale(1.07);
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.07rem;
  color: #25313E;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.18s, color 0.19s;
}
.main-nav a:hover, .main-nav a.active {
  background: #FFAB3C;
  color: #fff;
}
.cta-btn {
  background: #FFAB3C;
  color: #25313E;
  padding: 12px 28px;
  border-radius: 12px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.05rem;
  margin-left: 18px;
  border: none;
  cursor: pointer;
  transition: background 0.22s, transform 0.18s, box-shadow 0.16s;
  box-shadow: 0 1px 6px 0 rgba(37,49,62,0.08);
  letter-spacing: 0.01em;
  position: relative;
}
.cta-btn::after {
  content: '';
  position: absolute;
  left: 16px; top: 50%;
  width: 12px; height: 12px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.11;
  pointer-events: none;
  transform: translateY(-50%) scale(0.9);
  transition: opacity 0.16s;
}
.cta-btn:hover {
  background: #9C7A4A;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 20px 0 rgba(43,35,123,0.13);
}
/* Mobile Menu Icon */
.mobile-menu-toggle {
  display: none;
  background: #FFAB3C;
  color: #25313E;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 12px;
  transition: background 0.2s, transform 0.19s;
  z-index: 101;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #9C7A4A;
  color: #fff;
  transform: scale(1.08);
  outline: none;
}

/* --- MOBILE MENU OVERLAY --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(37,49,62,0.88);
  color: #fff;
  z-index: 120;
  transform: translateX(-120%);
  transition: transform 0.44s cubic-bezier(.6,-0.1,.45,1.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 38px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: #FFAB3C;
  color: #25313E;
  font-size: 2.2rem;
  border: none;
  border-radius: 12px;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 125;
  transition: background 0.2s, color 0.16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #9C7A4A; color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  width: 100%;
  padding: 32px 28px 0 28px;
  margin-top: 18px;
}
.mobile-nav a {
  background: transparent;
  color: #fff;
  padding: 16px;
  border-radius: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  transition: background 0.17s, color 0.15s;
  margin-bottom: 2px;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: #FFAB3C;
  color: #25313E;
}


/* --- HERO BLOCK --- */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54vh;
  background: linear-gradient(90deg, #FFAB3C 0%, #F7F4F0 100%);
  border-bottom-left-radius: 70px 30px;
  border-bottom-right-radius: 0 0;
  position: relative;
  animation: heroFadeIn 0.8s .17s cubic-bezier(.44,1.4,.49,1.02) backwards;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to { opacity: 1; transform: none; }
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.4rem;
  color: #25313E;
  text-shadow: 0 2px 0 #fff1, 0 8px 18px #fff2;
  margin-bottom: 12px;
}
.hero p {
  font-size: 1.18rem;
  margin-bottom: 18px;
  color: #25313E;
  max-width: 600px;
}
.hero .cta-btn {
  background: #25313E;
  color: #fff;
  font-weight: 700;
  font-size: 1.08rem;
}
.hero .cta-btn:hover {
  background: #FFAB3C;
  color: #25313E;
}

/* -- FEATURES BLOCKS AND CARDS -- */
.features, .services-preview, .about-short,
.services-overview, .consultation-cta, .unique-approach,
.partner-cta, .newsletter-cta, .news-brief, .news-main,
.testimonial-highlight, .faq, .thank-you,
.privacy-policy, .rgpd-info, .cookie-policy,
.terms-of-use, .value-preservation,
.contact-form, .contact-info, .invest-steps, .why-invest,
.expertise-areas, .team {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 2px 16px 0 rgba(43,35,123,0.05);
  position: relative;
}
.features ul,
.services-preview ul,
.about-short ul,
.unique-approach ol,
.unique-approach ul,
.why-invest ul,
.value-preservation ul,
.services-overview .service-list,
.contact-details ul,
.expertise-areas ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.features ul li,
.services-preview ul li,
.about-short ul li,
.unique-approach ol li,
.unique-approach ul li,
.why-invest ul li,
.value-preservation ul li,
.expertise-areas ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.09rem;
  background: #FFFDFA;
  border-left: 6px solid #FFAB3C;
  padding: 8px 16px 8px 12px;
  border-radius: 12px;
  color: #25313E;
  box-shadow: 0 1px 3px 0 rgba(37,49,62,0.06);
  transition: background 0.13s, box-shadow 0.16s;
}
.features ul li:hover,
.services-preview ul li:hover {
  background: #FFF8EC;
  box-shadow: 0 4px 12px 0 rgba(255,171,60,0.09);
}

/* Service Cards */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
  margin-bottom: 24px;
}
.service-item {
  flex: 1 1 260px;
  background: #FFFDFA;
  padding: 24px 18px 30px;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(43,35,123,0.08);
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.16s;
}
.service-item:hover {
  box-shadow: 0 6px 24px 0 rgba(255,171,60,0.16);
  transform: translateY(-4px) scale(1.03);
}
.service-price {
  color: #fff;
  background: #9C7A4A;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 8px 16px;
  border-radius: 10px;
  position: absolute;
  bottom: 18px; right: 18px;
}

/* FAQ BLOCKS */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #FFFDFA;
  border-radius: 14px;
  box-shadow: 0 1px 7px 0 rgba(43,35,123,0.07);
  padding: 18px 16px;
  margin-bottom: 12px;
  transition: background 0.15s, box-shadow 0.12s;
}
.faq-item h3 {
  font-size: 1.15rem;
  margin-bottom: 7px;
  color: #9C7A4A;
}
.faq-item:hover {
  background: #FFF8EC;
  box-shadow: 0 6px 18px 0 rgba(255,171,60,0.09);
}

/* --- TESTIMONIALS --- */
.testimonial-card blockquote {
  font-size: 1.35rem;
  font-family: 'Playfair Display', serif;
  color: #25313E;
  line-height: 1.35;
  font-style: italic;
  margin-bottom: 16px;
  background: none;
}
.testimonial-author {
  font-family: 'Lato', Arial;
  font-weight: 600;
  color: #9C7A4A;
  font-size: 1.08rem;
  margin-top: 6px;
  letter-spacing: 0.01em;
}

/* NEWS & MARKET COMMENTARY */
.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 8px 0 18px 0;
}
.news-filters span {
  font-weight: 400;
  font-size: 1rem;
}
.news-filters button {
  background: #FFAB3C;
  border: none;
  border-radius: 7.5px;
  padding: 7px 16px;
  color: #25313E;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  margin-right: 2px;
  box-shadow: 0 1px 4px 0 rgba(255,171,60,0.09);
  transition: background 0.16s, color 0.13s, transform 0.18s;
}
.news-filters button:hover {
  background: #25313E;
  color: #fff;
  transform: scale(1.06);
}
.articles-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.market-commentary, .market-trend-comment {
  background: #9C7A4A;
  color: #fff;
  border-radius: 10px;
  padding: 18px 18px;
  font-size: 1.05rem;
  font-family: 'Lato', Arial;
  font-weight: 600;
  margin-bottom: 0;
}
.market-commentary strong, .market-trend-comment strong {
  color: #FFFAB3;
}

/* NEWSLETTER CTA */
.newsletter-cta .newsletter-form {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  flex-wrap: wrap;
  background: #FFFDFA;
  border-radius: 14px;
  padding: 14px 18px;
}
.newsletter-cta .newsletter-form span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Lato', Arial;
  font-size: 1.12rem;
  color: #25313E;
}

/* --- CONTACT --- */
.map-block {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFAB3C18;
  color: #25313E;
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 12px;
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-details a {
  color: #9C7A4A;
  font-weight: 600;
}
.contact-details a:hover { color: #FFAB3C; }

/* --- FOOTER --- */
footer {
  width: 100%;
  background: #25313E;
  color: #fff;
  padding: 42px 0 26px 0;
  border-top-left-radius: 60px 25px;
  /* Decorative arc */
  box-shadow: 0 -2px 60px 0 rgba(37,49,62,0.09);
  position: relative;
  margin-top: 56px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #FFAB3C; font-weight: 500;
  font-family: 'Playfair Display',serif;
  font-size: 1.08rem;
  transition: color 0.14s;
}
.footer-nav a:hover { color: #fff; }
.footer-contact {
  font-size: 1rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
  font-family: 'Lato', Arial, sans-serif;
}
.footer-contact img {
  vertical-align: middle;
  margin-right: 8px;
  height: 16px;
}
footer small {
  opacity: .68;
  color: #FFAB3C;
  margin-top: 12px;
  display: block;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #25313E;
  color: #fff;
  z-index: 2000;
  box-shadow: 0 -2px 24px 0 rgba(43,35,123,0.16);
  padding: 24px 14px 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: bannerSlideIn 0.75s cubic-bezier(.6,-0.17,.86,1.38) backwards;
  font-size: 1.05rem;
}
@keyframes bannerSlideIn {
  from { opacity: 0; transform: translateY(100px); }
  to { opacity: 1; transform: none; }
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}
.cookie-btn {
  background: #FFAB3C;
  color: #25313E;
  font-family: 'Playfair Display', serif;
  padding: 10px 20px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  margin-right: 3px;
  box-shadow: 0 1px 4px 0 rgba(255,171,60,0.09);
  transition: background 0.15s, color 0.13s, transform 0.13s;
}
.cookie-btn.accept {
  background: #FFAB3C;
  color: #25313E;
}
.cookie-btn.reject {
  background: #fff;
  color: #25313E;
}
.cookie-btn.settings {
  background: #9C7A4A;
  color: #fff;
}
.cookie-btn:hover {
  background: #E86B26;
  color: #fff;
  transform: scale(1.05);
}
.cookie-btn.settings:hover {
  background: #FFAB3C; color: #25313E;
}
.cookie-banner a {
  color: #FFAB3C;
  text-decoration: underline;
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(37,49,62,0.80);
  z-index: 2100;
  display: none;
  align-items: center;
  justify-content: center;
  animation: modalBackdropIn 0.25s linear backwards;
}
@keyframes modalBackdropIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal-backdrop.open { display: flex; }
.cookie-modal {
  background: #fff;
  color: #25313E;
  border-radius: 16px;
  padding: 28px 20px 22px 20px;
  width: 94vw;
  max-width: 410px;
  box-shadow: 0 4px 40px 0 rgba(43,35,123,0.23);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: cookieModalPopIn 0.38s cubic-bezier(.6,-0.17,.86,1.38);
}
@keyframes cookieModalPopIn {
  from { opacity: 0; transform: scale(0.89) translateY(32px); }
  to { opacity: 1; transform: none; }
}
.cookie-modal h2 {
  font-size: 1.40rem;
  color: #9C7A4A;
  margin-bottom: 2px;
  font-family: 'Playfair Display', serif;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FFF8EC;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 600;
  cursor: pointer;
}
.cookie-category input[type=checkbox] {
  width: 22px;
  height: 22px;
  margin-right: 3px;
  accent-color: #FFAB3C;
}
.cookie-modal .cookie-btns {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-modal-close {
  position: absolute;
  right: 12px; top: 8px;
  font-size: 1.5rem;
  background: #FFAB3C;
  color: #25313E;
  border: none;
  border-radius: 8px;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.19s, color 0.15s;
}
.cookie-modal-close:hover {
  background: #9C7A4A;
  color: #fff;
}


/* --- RESPONSIVE LAYOUTS --- */
@media (max-width: 1024px) {
  .main-nav {
    gap: 15px;
  }
  .cta-btn {
    margin-left: 8px;
  }
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 900px) {
  .service-list {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.37rem;}
  .main-header {
    flex-wrap: wrap;
    padding: 10px 0 8px 0;
    position: relative;
  }
  .main-nav {
    display: none !important;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 12px 20px;
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .card-container,
  .service-list,
  .content-grid,
  .footer-nav {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-contact {font-size: .97rem;}
  .section, .features, .services-preview, .about-short, .services-overview, .consultation-cta, .unique-approach, .partner-cta,
   .newsletter-cta, .news-brief, .news-main, .testimonial-highlight, .faq, .thank-you, .privacy-policy, .rgpd-info, .cookie-policy, .terms-of-use,
    .value-preservation, .contact-form, .contact-info, .invest-steps, .why-invest,.expertise-areas, .team {
    padding: 26px 7px;
    margin-bottom: 38px;
    border-radius: 18px;
  }
  .testimonial-card {padding: 18px 6px;}
  footer {padding-left:4vw; padding-right:4vw;}
  .hero .container {align-items: stretch;}
}
@media (max-width: 540px) {
  h1 {font-size:1.35rem;}
  h2 {font-size:1.09rem;}
  p,ul,li {font-size:.96rem;}
  .cta-btn {font-size: .98rem; padding: 11px 14px; }
  .cookie-modal {padding: 18px 7px 13px 10px;}
  .cookie-modal h2 {font-size: 1.07rem;}
}
@media (max-width: 480px) {
  .main-header > a img {
    height: 38px;
  }
  footer .container {gap: 10px;}
  .footer-contact {font-size: .92rem;}
  .footer-nav {gap: 9px;}
}
/* Responsive flex direction for text-image sections */
.text-image-section {
  flex-direction: row;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}

/* -- MICRO-ANIMATION: Card Hover Bubble -- */
.card, .service-item, .faq-item, .testimonial-card {
  will-change: transform, box-shadow;
  cursor: pointer;
  transition: box-shadow 0.22s, transform 0.19s;
}

/* --- SCROLLBAR FOR PLAYFUL ACCENT --- */
::-webkit-scrollbar {
  width: 0.9em;
  background: #F7F4F0;
}
::-webkit-scrollbar-thumb {
  background: #FFAB3C;
  border-radius: 18px;
}
::-webkit-scrollbar-thumb:hover {background: #9C7A4A;}

/* -- Fun, Playful Details for Dynamic Look -- */
.section:after, .features ul li:after, .testimonial-card:after {
  content: '';
  display: block;
  width: 32px;
  height: 8px;
  border-radius: 16px;
  background: #FFAB3C33;
  margin-top: 10px;
  animation: squiggleIn .85s 0.12s cubic-bezier(.4,1.4,.6,1.0) backwards;
}
@keyframes squiggleIn {
  from { opacity:0; transform:scaleX(0.5) scaleY(0.3) rotate(-16deg);}
  to   { opacity:1; transform:none;}
}
.features ul li:after {width:14px; height:5px; margin-top:4px;}
.testimonial-card:after {margin-top:7px;width:26px;}

/* REMOVE duplicate decorative bars in nested blocks */
.features ul li:not(:last-child):after {display:none;}

/* --- ACCENT FONT EFFECTS FOR PLAYFUL FEEL --- */
h1,h2,h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

/* --- BRAND FONTS IMPORT (NON @import for wider browser support) --- */
@font-face {
  font-family: 'Playfair Display';
  font-weight: 400;
  font-style: normal;
  src: local('Playfair Display'), local('PlayfairDisplay'),
    url('https://fonts.gstatic.com/s/playfairdisplay/v30/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYh0btpDfTkQ.ttf') format('truetype');
}
@font-face {
  font-family: 'Lato';
  font-weight: 400;
  font-style: normal;
  src: local('Lato'),
    url('https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHjxAwWw.ttf') format('truetype');
}

/* ========== END OF CSS ========== */
