/* ===========================================================================
   SPEEDY EXPEDITION BEAUTY - STYLE.CSS
   Geometric Structured Design with Flexbox Only (Mobile-First Responsive)
   =========================================================================== */

/* 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, ol, ul, li,
fieldset, form, label, legend, 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 { 
  box-sizing: border-box; 
  font-size: 16px; 
  scroll-behavior: smooth; 
  background: #F8F3F0;
}
*, *:before, *:after { box-sizing: inherit; }
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F8F3F0;
  color: #3A4752;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  word-break: break-word;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #3A4752; text-decoration: none; transition: color .15s; }
a:hover, a:focus { color: #D1A5B3; outline: none; }
ul, ol { margin-left: 1.25em; }
li { margin-bottom: 0.6em; }
table { border-collapse: collapse; width: 100%; background: #fff; border-radius: 12px; overflow: hidden; }
th, td { padding: 16px 14px; text-align: left; font-size:1rem; }
th { font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-weight: 700; background: #e9e7e7; letter-spacing: .04em; }

/* FONT FACE */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Open+Sans:wght@400;600;700&display=swap');

/* TYPOGRAPHY SCALE & STYLE */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: #3A4752;
  letter-spacing: .03em;
  margin-bottom: 16px;
  line-height: 1.16;
}
h1 { font-size: 2.25rem; margin-bottom: 20px; }
h2 { font-size: 1.6rem; margin-bottom: 16px; }
h3 { font-size: 1.2rem; margin-bottom: 12px; }
h4 { font-size: 1.05rem; margin-bottom: 10px; }
p, blockquote, .subheadline {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
  color: #3A4752;
}
blockquote {
  font-style: italic;
  color: #272d33;
  border-left: 5px solid #D1A5B3;
  padding: 8px 24px 8px 18px;
  margin-bottom: 12px;
  background: #f7ebf1;
  border-radius: 8px;
}

strong { font-weight: 700; }
.secondary { color: #D1A5B3 !important; }
.content-wrapper { width: 100%; max-width: 900px; margin-right: auto; margin-left: auto; }

/* GENERAL CONTAINER STYLES */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* SECTIONS (MANDATORY SPACING) */
.section,
.hero,
.features,
.services-preview,
.services,
.pricing-table,
.contact-details,
.contact-booking,
.faq-section,
.legal,
.final-cta,
.cta,
.confirmation,
.about-section,
.why-choose,
.faq-preview {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 24px;
  box-shadow: none;
}

/* CARD CONTAINERS*/
.card-container,
.feature-grid,
.service-list,
.faq-accordion,
.trust-badges,
.footer-contact,
.text-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px; position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 18px 0 rgba(58,71,82,0.07);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s cubic-bezier(.53,.26,.32,.89);
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(58,71,82,0.13);
  z-index: 1;
}

.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;
}

/* TESTIMONIALS */
.testimonials {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 18px 0 rgba(58,71,82,.07);
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 24px 16px 24px;
  background: #F8F3F0;
  border-radius: 16px;
  min-width: 260px;
  max-width: 340px;
  box-shadow: 0 2px 9px 0 rgba(58,71,82,0.12);
  margin-bottom: 20px;
  border: 1.5px solid #eae1e6;
  color: #222;
  transition: box-shadow 0.18s;
}
.testimonial-card .customer-info {
  font-size: 1rem;
  font-weight: 600;
  color: #3A4752;
  margin-bottom: 0;
  letter-spacing: 0.02em;
}
.testimonial-card .stars {
  display: flex; gap: 2px; align-items:center; }
.testimonial-card blockquote {
  border-left: 5px solid #D1A5B3;
  background: #fff;
  font-size: 1.06rem;
  color: #24272d;
  margin-bottom: 8px;
}

/* FEATURES & GRID CARDS */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 rgba(58,71,82,0.09);
  padding: 28px 18px 22px 18px;
  min-width: 210px;
  max-width: 270px;
  flex: 1 1 210px;
  border: 1.5px solid #f2e7eb;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border 0.18s;
}
.feature-item img {
  width: 48px; height: 48px;
  object-fit: contain;
}
.feature-item h3 {
  font-size: 1.17rem;
  font-weight: 700;
  color: #3A4752;
  margin-bottom: 8px;
}
.feature-item:hover {
  box-shadow: 0 4px 16px 0 rgba(58,71,82,0.14);
  border: 1.5px solid #D1A5B3;
}

/* SERVICE LISTS */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0 18px 0;
}
.service-list li {
  background: #fff;
  border-left: 5px solid #D1A5B3;
  border-radius: 10px;
  padding: 16px 18px 13px 18px;
  color: #3A4752;
  margin-bottom: 8px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.service-title {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
  color: #3A4752;
}
.service-desc {
  font-size: 0.98rem;
  color: #4d5964;
}

/* BUTTONS & CALL TO ACTIONS */
.cta-btn {
  background: #3A4752;
  color: #fff;
  padding: 15px 34px;
  border-radius: 99px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  box-shadow: 0 2px 10px 0 rgba(58,71,82,0.09);
  border: none;
  outline: none;
  display: inline-block;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
  margin-top: 10px;
  margin-bottom: 8px;
  text-align: center;
  letter-spacing: .04em;
  cursor: pointer;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #D1A5B3;
  color: #3A4752;
  box-shadow: 0 3px 16px 0 rgba(58,71,82,0.13);
}
.cta-btn.secondary {
  background: #fff;
  color: #D1A5B3;
  border: 2px solid #D1A5B3;
  box-shadow: none;
}
.cta-btn.secondary:hover {
  background: #D1A5B3; color: #fff;
}

.button,
button,
input[type="submit"] {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 20px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #3A4752;
  color: #fff;
  cursor: pointer;
  transition: background .17s, color .17s, box-shadow .17s;
}
button:hover, button:focus, input[type="submit"]:hover {
  background: #D1A5B3;
  color: #3A4752;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  border-bottom: 2.5px solid #e9e4e8;
  box-shadow: 0 2px 12px 0 rgba(58,71,82,0.06);
  padding: 0;
  position: relative;
  z-index: 21;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  padding-bottom: 16px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
  letter-spacing: .02em;
  color: #3A4752;
  background: none;
  padding: 6px 16px;
  border-radius: 10px;
  transition: background 0.16s, color 0.16s;
  font-weight: 700;
}
header nav a:hover,
header nav a:focus, .mobile-nav a:hover, .mobile-nav a:focus {
  color: #D1A5B3;
  background: #fbeaf4;
}
header img { height: 48px; width: auto; }

/* HEADER CTA BUTTON */
header .cta-btn {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.03rem;
  padding: 10px 26px;
  box-shadow: 0 1.5px 6px 0 rgba(58,71,82,0.07);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  font-size: 2rem;
  background: #fff;
  color: #3A4752;
  border: 2px solid #D1A5B3;
  border-radius: 50%;
  position: absolute;
  right: 22px;
  top: 12px;
  cursor: pointer;
  z-index: 111;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:hover {
  background: #F8F3F0;
  color: #D1A5B3;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.61,.13,.31,.94);
  padding: 32px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  box-shadow: 0 8px 60px 0 rgba(59,32,54,0.18);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  right: 22px;
  top: 18px;
  background: #F8F3F0;
  border: 2px solid #D1A5B3;
  border-radius: 50%;
  color: #3A4752;
  font-size: 2rem;
  width: 46px;
  height: 46px;
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:hover {
  background: #D1A5B3;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  margin-top: 40px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  color: #3A4752;
  font-weight: 700;
  padding: 12px 0;
  width: 100%;
  transition: background 0.16s, color 0.16s;
  border-radius: 8px;
}
.mobile-nav a:active {
  background: #f5e4ee;
  color: #D1A5B3;
}

@media (min-width: 992px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}
@media (max-width: 991px) {
  header .container nav,
  header .container .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle { display: flex !important; }
}

/* HERO SECTION */
.hero {
  background: #D1A5B3 linear-gradient(108deg,#f6dde5 50%, #D1A5B3 100%);
  border-radius: 30px;
  display: flex;
  align-items: center;
  min-height: 330px;
  box-shadow: 0 2px 10px 0 rgba(58,71,82,0.07);
  padding-top: 55px;
  padding-bottom: 55px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  color: #3A4752;
}
.hero h1 { color: #3A4752; font-size: 2.35rem; }
.hero .subheadline {
  font-size: 1.16rem;
  margin-bottom: 6px;
  color: #3A4752;
}

.final-cta {
  background: #D1A5B3;
  color: #fff;
  border-radius: 26px;
  text-align: center;
}
.final-cta h2,
.final-cta p {
  color: #3A4752;
}
.final-cta .cta-btn {
  margin-top: 16px;
}

/* ABOUT, CONTACT, FAQ, LEGALS */
.about-section,.why-choose,
.contact-details,
.contact-booking,
.faq-section,
.legal,
.confirmation{
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(58,71,82,0.07);
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 14px;
  margin-bottom: 14px;
}
.faq-accordion h3 {
  cursor: pointer;
  background: #F8F3F0;
  color: #3A4752;
  padding: 11px 18px;
  border-radius: 12px;
  transition: background 0.18s;
  font-size: 1.10rem;
}
.faq-accordion h3:hover {
  background: #D1A5B3;
  color: #fff;
}
.faq-body {
  background: #fff;
  padding: 12px 18px;
  border-left: 4px solid #D1A5B3;
  margin-bottom: 5px;
  border-radius: 8px;
  color: #3A4752;
}

.privacy-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 15px 0;
  font-size: .96rem;
  color: #3A4752;
  background: #F8F3F0;
  border-radius: 9px;
  padding: 8px 14px;
}
.privacy-notice img {
  height: 22px;
  width: 22px;
}

/* PRICING TABLE */
.pricing-table {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(58,71,82,0.07);
  padding-top: 40px;
  padding-bottom: 40px;
}
.pricing-table table {
  margin-top: 24px;
  margin-bottom: 18px;
}
.pricing-table th,
.pricing-table td {
  border-bottom: 1px solid #f0e6eb;
  padding: 14px 10px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* TRUST BADGES */
.trust-badges {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-top: 22px;
}
.trust-badges img {
  width: 36px; height: 36px; margin-right: 8px;
}

/* FOOTER */
footer {
  background: #3A4752;
  color: #fff;
  border-radius: 30px 30px 0 0;
  padding-top: 30px;
  padding-bottom: 16px;
  margin-top: 48px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 16px 0 0 0;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: .97rem;
  letter-spacing: .01em;
  border-radius: 6px;
  transition: background 0.17s, color 0.17s;
  padding: 3px 13px;
}
footer nav a:hover,footer nav a:focus {
  background: #D1A5B3;
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.99rem;
  color: #fff;
}
.footer-contact img {
  width: 19px; height: 19px; display: inline-block; filter: brightness(0) invert(1);}
footer img { height: 44px; width: auto; }

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: #3A4752;
  border-top: 3px solid #D1A5B3;
  box-shadow: 0 -3px 32px 0 rgba(58,71,82,0.13);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 24px 14px 20px 14px;
  z-index: 5000;
  transition: transform 0.31s cubic-bezier(.69,.31,.31,.98), opacity 0.32s;
  opacity: 1;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-banner-text {
  font-size: 1.03rem;
  max-width: 600px;
  margin-bottom: 6px;
  text-align: center;
}
.cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  width: 100%;
}
.cookie-btn {
  background: #3A4752;
  color: #fff;
  padding: 10px 24px;
  border-radius: 20px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: .96rem;
  font-weight: 700;
  border: none;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #D1A5B3;
  color: #3A4752;
}
.cookie-btn.settings {
  background: #fff;
  color: #D1A5B3;
  border: 1.5px solid #D1A5B3;
}
.cookie-btn.settings:hover { background: #D1A5B3; color: #fff; }

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(58,71,82,0.18);
  z-index: 6000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s;
  opacity: 1;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 5px 28px 0 rgba(58,71,82,0.13);
  padding: 36px 28px 28px 28px;
  max-width: 440px;
  width: 95%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 6100;
}
.cookie-modal h2 {
  margin-bottom: 5px;
}
.cookie-modal-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  gap: 7px;
}
.cookie-modal-toggle {
  width: 43px;
  height: 24px;
  border-radius: 12px;
  background: #D1A5B3;
  cursor: pointer;
  position: relative;
  transition: background 0.15s;
  border: none;
  margin-left: 10px;
}
.cookie-modal-toggle[aria-checked="false"] {
  background: #F8F3F0;
}
.cookie-modal-toggle::after {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(122,122,122,0.08);
  transition: left 0.17s, background 0.15s;
}
.cookie-modal-toggle[aria-checked="true"]::after {
  left: 22px;
  background: #fff5fc;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  right: 18px;
  top: 15px;
  background: #F8F3F0;
  color: #3A4752;
  border: 2px solid #D1A5B3;
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.cookie-modal .close-cookie-modal:hover {
  background: #D1A5B3; color: #fff;
}

/* FORM ELEMENTS & INPUTS */
input, textarea, select {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 10px;
  border: 2px solid #E8E0E8;
  padding: 12px 13px;
  margin-bottom: 16px;
  background: #fff;
  color: #3A4752;
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  border: 2px solid #D1A5B3; outline: none;
  background: #fbeaf4;
}

/* ANIMATIONS */
@media (prefers-reduced-motion:no-preference) {
  .mobile-menu,
  .cookie-banner,
  .cookie-modal-overlay {
    will-change: transform, opacity;
  }
}

/* GEOMETRIC VISUALS (SHAPES & ACCENTS) */
.section,
.hero,
.features,
.why-choose,
.final-cta,
.testimonials,
.pricing-table,
.legal,
.confirmation,
.about-section,
.footer-contact,
.contact-details,
.contact-booking {
  box-shadow: 0 2px 14px 0 rgba(58,71,82,.07);
  border-radius: 24px 32px 18px 36px/32px 20px 36px 18px;
  /* geometric/structured effect visually */
}

/* Responsive/Mobile Adjustments */
@media (max-width: 950px) {
  .container { max-width: 99vw; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .hero, .final-cta, .pricing-table, .about-section, .why-choose, .testimonials { border-radius: 20px; }
  .features .feature-grid,
  .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  .card-container, .footer-contact, .trust-badges { flex-direction: column; gap: 16px;}
  header .container { flex-direction: row; gap: 10px; padding: 0 10px; }
  footer .container { padding: 0 8px; }
}
@media (max-width: 600px) {
  html { font-size: 14px; }
  .hero,.features,.final-cta,.services,.services-preview,.about-section,.contact-details,.contact-booking,.faq-section,.legal,.confirmation { padding: 26px 6px; border-radius: 13px; }
  .content-wrapper { padding: 0 2px; }
  h1 { font-size: 1.52rem; }
  h2 { font-size: 1.22rem; }
}
@media (max-width: 480px) {
  .hero,.features,.final-cta,.services,.about-section,.contact-details,.contact-booking,.faq-section,.legal,.confirmation {
    padding: 12px 2px;
    border-radius: 8px;
  }
  h1 { font-size: 1.22rem; }
  h2 { font-size: 1rem; }
}

/* Geometric Utility Classes */
.angle-top {
  clip-path: polygon(0 0, 100% 9vw, 100% 100%, 0% 100%);
  overflow: hidden;
}
.angle-bottom {
  clip-path: polygon(0 0, 100% 0, 100% 91vw, 0 100%);
  overflow: hidden;
}

/* VISUAL ENHANCEMENTS */
.box-shadow {
  box-shadow: 0 6px 24px 0 rgba(58,71,82,0.09);
}
.rounded {
  border-radius: 18px;
}

/* Hide visually
   Used for accessbility only elements. */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Extra: Prevent horizontal scroll */
body {
  overflow-x: hidden;
}

/* Utility: Remove last-margin for cards/sections */
.card-container > *:last-child,
.feature-grid > *:last-child,
.service-list > *:last-child,
.faq-accordion > *:last-child,
.footer-contact > *:last-child,
.text-section > *:last-child {
  margin-bottom: 0 !important;
}

