/* ================================================================== */
/* 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,
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 {
  line-height: 1.15; /* for better readable text */
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #fff;
  color: #1B1B1F;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
}
img, picture, video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #B59CB5;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 600;
}
a:focus {
  outline: 2px solid #B59CB5;
  outline-offset: 2px;
  z-index: 1;
}
a:hover, a:active {
  color: #1B1B1F;
  text-decoration: underline;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 10px;
}
blockquote {
  margin: 0 0 10px 0;
  font-size: 1.15rem;
  font-style: italic;
  color: #1B1B1F;
}

/* ================================================================== */
/* FONT FACE                                                          */
/* ================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Roboto:wght@400;700;900&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 900;
  letter-spacing: -1px;
  color: #1B1B1F;
  line-height: 1.15;
}
h1 { font-size: 2.7rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }
@media (min-width: 600px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.3rem; }
  h3 { font-size: 1.6rem; }
}

strong, b {
  font-weight: 700 !important;
}

.cta-btn, .cta-section a.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #B59CB5;
  color: #1B1B1F;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 900;
  border: none;
  border-radius: 34px;
  padding: 14px 40px;
  font-size: 1.18rem;
  box-shadow: 0 4px 20px 0 rgba(27,27,31,0.09);
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s, transform 0.2s;
  margin-top: 10px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.cta-btn:hover, .cta-btn:focus {
  background: #1B1B1F;
  color: #fff;
  box-shadow: 0 8px 24px 0 rgba(27,27,31,0.20);
  transform: translateY(-3px) scale(1.04);
}

/* ================================================================== */
/* CONTAINER                                                          */
/* ================================================================== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

/* ================================================================== */
/* HEADER & NAVIGATION                                                */
/* ================================================================== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(27,27,31,0.04);
  position: relative;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  padding-bottom: 20px;
}
header img {
  width: 132px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
header nav a {
  color: #1B1B1F;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .5px;
  transition: color 0.18s;
  padding: 6px 7px;
  border-radius: 6px;
}
header nav a:hover, header nav a.active {
  color: #B59CB5;
  background: rgba(181, 156, 181, 0.1);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #1B1B1F;
  cursor: pointer;
  z-index: 151;
  margin-left: 8px;
  margin-right: 0;
  transition: background 0.2s;
  border-radius: 7px;
  padding: 2px 11px 1px 6px;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #eee;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 80px rgba(27,27,31,0.16);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(.90,0,.25,1);
  opacity: 0;
  pointer-events: none;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #1B1B1F;
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 28px 22px 0 0;
  cursor: pointer;
  z-index: 2010;
  transition: background 0.2s;
  border-radius: 7px;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #eee;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 40px;
  padding: 0 35px;
}
.mobile-nav a {
  font-size: 1.19rem;
  font-weight: 900;
  color: #1B1B1F;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  transition: background 0.18s, color 0.2s;
  border-radius: 0;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #B59CB5;
  color: #fff;
}
@media (max-width: 1000px) {
  header nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1000px) {
  .mobile-menu { display: none !important; }
}

/* ================================================================== */
/* HERO SECTION                                                       */
/* ================================================================== */
.hero {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #1b1b1f;
  color: #fff;
  border-radius: 0 0 60px 0;
  box-shadow: 0 12px 32px 0 rgba(27,27,31,0.12);
  min-height: 340px;
  display: flex;
  align-items: center;
}
.hero .container {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1, .hero p {
  color: #fff;
}
.hero h1 {
  margin-bottom: 16px;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 20px;
  max-width: 650px;
}
@media (max-width: 768px) {
  .hero { padding: 34px 8px; border-radius: 0 0 40px 0; }
  .hero .container { padding: 0 5px; }
  .hero h1 { font-size: 2.1rem; }
  .hero p { font-size: 1.05rem; }
}

/* ================================================================== */
/* SECTION LAYOUTS                                                    */
/* ================================================================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  box-sizing: border-box;
  position: relative;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 18px 0 rgba(27,27,31,0.08);
  padding: 28px 24px;
  transition: box-shadow 0.25s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(27,27,31,0.14);
  transform: translateY(-4px) scale(1.037);
}
.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: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  color: #1B1B1F;
  box-shadow: 0 2px 16px rgba(181,156,181,0.09);
  border-radius: 18px;
  margin-bottom: 20px;
  min-width: 0;
  width: 100%;
  max-width: 610px;
  box-sizing: border-box;
  border: 2px solid #B59CB5;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px #B59CB511, 0 4px 17px #1B1B1F0A;
  transform: scale(1.016) translateY(-2px);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* ================================================================== */
/* FEATURE GRIDS / ICON SECTIONS                                      */
/* ================================================================== */
.features, .collection-features, .features-tips {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #F8F6F9;
  border-radius: 0 32px 32px 0;
}
.features .container, .features .content-wrapper {
  flex-direction: column;
}
.feature-grid,
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 12px;
}
.feature-grid > div, .features ul li, .collection-features ul li, .features-tips ul li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px #b59cb522;
  padding: 20px 18px;
  flex: 1 1 230px;
  color: #1B1B1F;
  font-weight: 500;
  font-size: 1rem;
  min-width: 180px;
  margin-bottom: 0;
  position: relative;
  transition: box-shadow 0.15s, transform 0.14s;
}
.feature-grid > div:hover,
.features ul li:hover {
  box-shadow: 0 6px 18px 0 #b59cb53a;
  transform: translateY(-3px) scale(1.035);
}
.features ul, .features-tips ul, .collection-features ul {
  flex-direction: column;
  gap: 14px;
  list-style-type: disc;
}
@media (min-width: 700px) {
  .feature-grid {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .feature-grid > div {
    flex-basis: 31%;
    max-width: 31%;
  }
}
@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div {
    max-width: 100%;
    flex: 1 1 100%;
  }
}
@media (max-width: 700px) {
  .features, .collection-features, .features-tips { padding: 22px 5px; }
  .feature-grid > div, .features ul li { font-size: 0.98rem; padding: 12px 10px; }
}

/* ================================================================== */
/* SERVICE SECTIONS                                                   */
/* ================================================================== */
.services-overview, .services-detail, .services-styling{
  margin-bottom: 60px;
  padding: 40px 20px;
}
.service-teasers, .services-detail ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-teasers > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px #1B1B1F10;
  padding: 28px 20px 18px 20px;
  flex: 1 1 230px;
  min-width: 190px;
  transition: box-shadow 0.15s, transform 0.14s;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service-teasers > div:hover {
  box-shadow: 0 7px 18px #B59CB530;
  transform: translateY(-3px) scale(1.022);
}
.service-teasers h3, .services-detail strong { color: #B59CB5; }
.service-teasers span, .services-detail span {
  background: #B59CB510;
  color: #1B1B1F;
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 0.98rem;
  font-weight: 700;
  margin-top: 6px;
}
.services-detail ul {
  flex-direction: column;
  gap: 20px;
  font-size: 1.05rem;
  margin-top: 22px;
}
.services-detail ul li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 6px #1B1B1F10;
  padding: 20px 16px;
  color: #1B1B1F;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}
@media (max-width: 800px) {
  .service-teasers, .services-detail ul { flex-direction: column; gap: 18px; }
  .service-teasers > div, .services-detail ul li { max-width: 100%; }
}

/* ================================================================== */
/* ABOUT & LEGAL SECTION                                              */
/* ================================================================== */
.about-snippet, .about-full, .contact-snippet,
.legal, .thank-you-confirmation, .cta-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 28px 0 rgba(181,156,181,0.05);
}
.about-snippet ul, .about-full ul {
  margin-top: 18px;
  margin-bottom: 0;
}

/* ================================================================== */
/* TESTIMONIALS                                                       */
/* ================================================================== */
.testimonials, .testimonials-inspiration {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px 75px 32px 20px;
  box-shadow: 0 2px 18px #b59cb513;
}
.testimonials .content-wrapper,
.testimonials-inspiration .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  color: #1B1B1F;
  min-width: 0;
}
.testimonial-card blockquote {
  font-size: 1.15rem;
  color: #1B1B1F;
  font-style: italic;
  margin-bottom: 3px;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #B59CB5;
  font-weight: 700;
  margin-top: 4px;
}
.testimonial-card div {
  color: #B59CB5;
  font-size: 1.3rem;
  margin-left: 12px;
}

/* ================================================================== */
/* CONTACT PAGE                                                        */
/* ================================================================== */
.contact-info, .contact-snippet {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 24px 0 #1b1b1f11;
}
.contact-data {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-data a {
  color: #B59CB5;
  font-weight: 700;
  transition: color 0.2s;
}
.contact-data a:hover {
  color: #1B1B1F;
}
.map-snippet {
  background: #eee;
  border-radius: 16px;
  padding: 20px;
  color: #333;
  font-size: 1rem;
  margin-top: 8px;
}

/* ================================================================== */
/* THANK YOU PAGE                                                     */
/* ================================================================== */
.thank-you-confirmation {
  text-align: center;
  max-width: 600px;
  margin: 40px auto 80px auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 25px #b59cb514;
}
.thank-you-confirmation h1 {
  color: #B59CB5;
}

/* ================================================================== */
/* CTA SECTION                                                        */
/* ================================================================== */
.cta-section {
  background: #B59CB5;
  color: #fff;
  border-radius: 47px 0 47px 47px;
  box-shadow: 0 2px 8px #1B1B1F10;
  text-align: center;
  margin-bottom: 60px;
}
.cta-section h2 {
  color: #fff;
  margin-bottom: 18px;
}
.cta-section .cta-btn {
  margin-top: 16px;
  background: #fff;
  color: #B59CB5;
}
.cta-section .cta-btn:hover {
  background: #1B1B1F;
  color: #fff;
}

/* ================================================================== */
/* FOOTER                                                             */
/* ================================================================== */
footer {
  background: #1B1B1F;
  color: #fff;
  padding: 32px 0 18px 0;
  border-top-right-radius: 80px;
  box-shadow: 0 -2px 13px #1B1B1F10;
}
footer .container {
  flex-direction: row;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
footer nav {
  display: flex;
  gap: 24px;
}
footer nav a {
  color: #B59CB5;
  font-size: 1rem;
  transition: color 0.17s;
}
footer nav a:hover {
  color: #fff;
}
footer p {
  font-size: 0.99rem;
  letter-spacing: 0.06em;
  color: #fff;
}
@media (max-width: 800px) {
  footer .container { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ================================================================== */
/* RESPONSIVE LAYOUTS (Mobile-first)                                   */
/* ================================================================== */
@media (max-width: 900px) {
  .container {
    padding: 0 8px;
  }
  .section, .features, .legal, .about-snippet, .about-full, .contact-snippet, .testimonials, .collection-features, .cta-section, .thank-you-confirmation {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 600px) {
  .container { padding: 0 2px; }
  .section, .features, .legal, .about-snippet, .about-full, .contact-snippet, .testimonials, .collection-features, .cta-section, .thank-you-confirmation {
    padding-left: 4px;
    padding-right: 4px;
    border-radius: 9px;
  }
  .cta-section, .hero {
    border-radius: 0;
  }
  .testimonial-card {
    padding: 12px 5px;
  }
}

/* ================================================================== */
/* MICRO-INTERACTIONS & TRANSITIONS                                   */
/* ================================================================== */
.card, .testimonial-card, .feature-grid > div, .service-teasers > div, .features ul li, .cta-btn {
  transition: box-shadow 0.17s, background 0.2s, color 0.17s, transform 0.17s;
}

/* ================================================================== */
/* COOKIE CONSENT BANNER                                              */
/* ================================================================== */
.cookie-banner {
  position: fixed;
  z-index: 5000;
  left: 0; right: 0;
  bottom: 0;
  background: #1B1B1F;
  color: #fff;
  box-shadow: 0 -6px 28px #1B1B1F25;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  gap: 24px;
  border-radius: 18px 18px 0 0;
  width: 100%;
  animation: slideUpCookie 0.4s cubic-bezier(.5,1.5,.5,.9);
}
@keyframes slideUpCookie {
  from { transform: translateY(96px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-banner-text {
  flex: 2 1 250px;
  font-size: 1.07rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-banner button {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 800;
  border-radius: 28px;
  padding: 9px 18px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  margin: 0 2px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.cookie-banner .accept-all {
  background: #B59CB5;
  color: #1B1B1F;
}
.cookie-banner .accept-all:hover {
  background: #fff;
  color: #1B1B1F;
  box-shadow: 0 2px 7px #B59CB540;
}
.cookie-banner .reject-all {
  background: transparent;
  color: #B59CB5;
  border: 2px solid #B59CB5;
}
.cookie-banner .reject-all:hover {
  background: #B59CB5;
  color: #fff;
}
.cookie-banner .settings {
  background: #1B1B1F;
  color: #fff;
  border: 2px solid #fff;
}
.cookie-banner .settings:hover {
  background: #fff;
  color: #1B1B1F;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 9px;
    gap: 13px;
  }
  .cookie-banner .cookie-actions {
    gap: 7px;
  }
}

/* Cookie Modal Popup */
.cookie-modal-overlay {
  position: fixed;
  z-index: 5010;
  left: 0; top: 0; right:0; bottom:0;
  background: rgba(27,27,31,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal .25s cubic-bezier(.7,0,.45,1);
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #1B1B1F;
  border-radius: 22px;
  box-shadow: 0 4px 50px #B59CB51a;
  padding: 34px 34px 30px 34px;
  min-width: 320px;
  width: 97vw;
  max-width: 390px;
  animation: slideInModal 0.32s cubic-bezier(.75,.1,.25,1);
  display: flex;
  flex-direction: column;
}
@keyframes slideInModal {
  from { transform: translateY(38px); opacity: .14; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  color: #B59CB5;
  font-size: 1.32rem;
  margin-bottom: 16px;
}
.cookie-modal label {
  font-size: 1rem;
  font-weight: 500;
  color: #1B1B1F;
  margin-right: 6px;
}
.cookie-modal .categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
}
.cookie-modal .essential {
  color: #999;
  font-size: 0.98rem;
}
.cookie-modal .switch {
  position: relative;
  display: inline-flex;
  width: 52px;
  height: 30px;
  margin-left: 12px;
}
.cookie-modal .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  border-radius: 22px;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #B59CB5;
  transition: background 0.18s;
}
.cookie-modal .slider:before {
  position: absolute;
  content: "";
  height: 22px; width:22px;
  left: 4px; bottom: 4px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.18s;
}
.cookie-modal .switch input:checked + .slider {
  background: #1B1B1F;
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(22px);
}
.cookie-modal .save-btn {
  background: #B59CB5;
  color: #fff;
  border: none;
  border-radius: 17px;
  padding: 9px 18px;
  font-weight: 800;
  font-size: 1.05rem;
  margin-top: 14px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cookie-modal .close-modal {
  background: none;
  border: none;
  position: absolute;
  color: #1B1B1F;
  top: 18px; right: 18px;
  font-size: 1.5rem;
  cursor: pointer;
}
.cookie-modal .save-btn:hover {
  background: #1B1B1F;
  color: #B59CB5;
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 16px 8px 14px 8px; min-width: unset; max-width: 98vw;
  }
}

/* ================================================================== */
/* MISCELLANEOUS UTILS                                                */
/* ================================================================== */
.hide-mobile {
  display: block;
}
@media (max-width: 600px) {
  .hide-mobile {
    display: none !important;
  }
}

/* ================================================================== */
/* GEOMETRIC DESIGN ELEMENTS (Optional, minimal)                      */
/* ================================================================== */
.section, .features, .about-snippet, .about-full, .contact-snippet, .testimonials, .collection-features, .legal, .thank-you-confirmation, .cta-section {
  border-bottom: 5px solid #B59CB5;
}
.features {
  border-left: 7px solid #1B1B1F;
}
.cta-section {
  border-right: 8px solid #fff;
}
.hero {
  border-bottom: 8px solid #B59CB5;
}

/* END */