:root{
  --ink:#121112;
  --ink-2:#1f2024;
  --paper:#ffffff;
  --paper-2:#ffffff;
  --card:#ffffff;
  --text:#211f1d;
  --muted:#706b63;
  --line:#e5d8c9;
  --gold:#c79a42;
  --gold-2:#f0cc78;
  --wine:#7f283f;
  --green:#264d43;
  --shadow:0 22px 60px rgba(23,18,12,0.14);
  --radius:8px;
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,
body{min-height:100%}
body{
  margin:0;
  font-family:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--paper);
  line-height:1.55;
  overflow-x:hidden;
}

img,
svg{max-width:100%}
img{display:block}
svg{fill:none; stroke:currentColor; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round}
a{color:inherit; text-decoration:none}
:where(h1,h2,h3,p,li,summary){overflow-wrap:break-word}
.container{width:min(var(--max), calc(100% - 40px)); margin-inline:auto}

.skip{
  position:absolute;
  left:-999px;
  top:10px;
  z-index:999;
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  color:#000;
}
.skip:focus{left:12px}

.siteHeader{
  position:sticky;
  top:0;
  z-index:30;
  background:rgba(18,17,18,0.9);
  border-bottom:1px solid rgba(255,255,255,0.1);
  backdrop-filter:blur(16px);
}
.siteHeader__inner{
  min-height:72px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:22px;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-width:0;
}
.brand__mark{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:50%;
  border:1px solid rgba(240,204,120,0.6);
  background:rgba(240,204,120,0.13);
  color:var(--gold-2);
  font-family:Georgia,"Times New Roman",serif;
  font-weight:800;
}
.brand__name{
  white-space:nowrap;
  font-family:Georgia,"Times New Roman",serif;
  font-size:18px;
  font-weight:800;
  color:#fff;
}
.brand__name span{color:var(--gold-2)}
.siteNav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  color:rgba(255,255,255,0.76);
  font-size:14px;
}
.siteNav a:hover{color:#fff}
.headerActions{
  display:flex;
  justify-content:flex-end;
  gap:10px;
}
.btn{
  min-height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:999px;
  padding:10px 16px;
  border:1px solid transparent;
  font-weight:750;
  line-height:1.1;
  white-space:nowrap;
  transition:transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}
.btn--gold{
  color:#17120c;
  border-color:rgba(240,204,120,0.65);
  background:linear-gradient(135deg, var(--gold), var(--gold-2));
}
.btn--light{
  color:#fff;
  border-color:rgba(255,255,255,0.38);
  background:rgba(255,255,255,0.12);
}
.btn--quiet{
  color:rgba(255,255,255,0.88);
  border-color:rgba(255,255,255,0.18);
  background:transparent;
}
.btn--large{
  min-height:50px;
  padding-inline:22px;
}

.hero{
  position:relative;
  min-height:calc(100svh - 72px);
  display:flex;
  flex-direction:column;
  background:var(--ink);
  color:#fff;
}
.hero__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(18,17,18,0.9) 0%, rgba(18,17,18,0.72) 44%, rgba(18,17,18,0.34) 74%, rgba(18,17,18,0.22) 100%),
    url("../images/elite-dating-site.jpg");
  background-position:center right;
  background-size:cover;
}
.hero__inner{
  position:relative;
  flex:1;
  min-height:calc(100svh - 72px);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:110px 0 64px;
}
.eyebrow{
  display:block;
  margin:0 0 12px;
  color:var(--gold-2);
  font-size:12px;
  font-weight:850;
  text-transform:uppercase;
  letter-spacing:0.08em;
}
.eyebrow--dark{color:var(--wine)}
.hero h1{
  max-width:720px;
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:66px;
  line-height:1.02;
  font-weight:800;
  letter-spacing:0;
}
.hero__copy{
  max-width:660px;
  margin:18px 0 0;
  color:rgba(255,255,255,0.78);
  font-size:19px;
}
.hero__actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
  margin-top:28px;
}
.trustLine{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:0;
  margin-top:22px;
  color:rgba(255,255,255,0.66);
  font-size:13px;
  font-weight:700;
}
.trustLine span{
  position:relative;
  padding:0 13px;
}
.trustLine span:not(:first-child)::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:4px;
  height:4px;
  border-radius:50%;
  background:rgba(240,204,120,0.72);
  transform:translate(-2px, -50%);
}
.section{padding:82px 0}
.section--paper{background:var(--paper-2)}
.section--how{
  position:relative;
  overflow:hidden;
  padding:94px 0 82px;
  background:#fff;
  border-bottom:1px solid var(--line);
}
.sectionHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:32px;
  margin-bottom:28px;
}
.sectionHead--center{
  display:block;
  max-width:760px;
  margin-inline:auto;
  text-align:center;
}
.sectionHead h2,
.standoutIntro h2,
.finalCta h2{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:44px;
  line-height:1.08;
  font-weight:800;
  letter-spacing:0;
}
.sectionHead p,
.standoutIntro p,
.finalCta p{
  margin:10px 0 0;
  color:var(--muted);
  max-width:720px;
}
.howProcess{
  position:relative;
  z-index:1;
  display:block;
  text-align:center;
}
.howIntro{
  max-width:840px;
  margin:0 auto 46px;
}
.howIntro h2{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:50px;
  line-height:1.08;
  font-weight:800;
  letter-spacing:0;
  color:#151d2d;
}
.howIntro p{
  margin:14px auto 0;
  color:var(--muted);
  max-width:68ch;
  font-size:18px;
}
.stepsGrid{
  position:relative;
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:16px;
  padding:0;
  background:transparent;
  border:0;
  box-shadow:none;
}
.storyCard{
  border-radius:var(--radius);
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 16px 42px rgba(22,18,14,0.08);
}
.stepCard{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  min-height:318px;
  padding:28px 24px 30px;
  text-align:center;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:rgba(255,255,255,0.92);
  box-shadow:0 18px 44px rgba(22,18,14,0.1);
}
.stepCard:not(:last-child)::after{
  content:"...";
  position:absolute;
  right:-16px;
  top:43%;
  color:rgba(199,154,66,0.58);
  font-size:20px;
  letter-spacing:2px;
  line-height:1;
  z-index:2;
}
.stepCard__icon{
  width:72px;
  height:72px;
  display:grid;
  place-items:center;
  border-radius:50%;
  border:1px solid rgba(199,154,66,0.74);
  color:#2d261f;
  background:#fff;
}
.stepCard__icon svg{
  width:34px;
  height:34px;
}
.stepCard__num{
  position:relative;
  z-index:1;
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  margin:-9px 0 18px;
  border-radius:50%;
  background:linear-gradient(135deg, #b88634, #dbb867);
  color:#fff;
  font-weight:900;
  font-size:18px;
  box-shadow:0 10px 22px rgba(184,134,52,0.24);
}
.stepCard h3,
.standoutItem h3{
  margin:12px 0 8px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:22px;
  line-height:1.18;
}
.stepCard h3{margin-top:0}
.stepCard h3::after{
  content:"";
  display:block;
  width:48px;
  height:1px;
  margin:14px auto 0;
  background:rgba(199,154,66,0.42);
}
.stepCard p,
.standoutItem p,
.memberCard p,
.storyCard p{
  margin:0;
  color:var(--muted);
}
.stepCard p{
  max-width:30ch;
  margin-inline:auto;
  font-size:14px;
}
.articleSection{
  background:var(--paper-2);
}
.articleBlock{
  max-width:920px;
  text-align:center;
}
.articleBlock h2{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:42px;
  line-height:1.12;
  font-weight:800;
  letter-spacing:0;
  color:var(--text);
}
.articleBlock p{
  margin:18px auto 0;
  color:var(--muted);
  font-size:17px;
  line-height:1.75;
  max-width:78ch;
}
.articleBlock p a,
.standoutIntro p a,
.faq details p a{
  color:#9b6f18;
  font-weight:800;
  text-decoration:underline;
  text-decoration-thickness:1px;
  text-underline-offset:3px;
}
.articleBlock p a:hover,
.standoutIntro p a:hover,
.faq details p a:hover{
  color:#6f4d0f;
}
.articleBlock__cta{
  margin-top:30px;
}
.standoutSection{
  background:#fff;
}
.standoutWrap{
  display:grid;
  gap:44px;
}
.standoutIntro{
  max-width:850px;
  margin-inline:auto;
  text-align:center;
}
.standoutIntro p{
  margin:14px auto 0;
  max-width:78ch;
  font-size:15px;
  line-height:1.65;
}
.standoutLayout{
  display:grid;
  grid-template-columns:minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap:56px;
  align-items:start;
}
.standoutImage{
  height:610px;
  margin:0;
  overflow:hidden;
  border-radius:var(--radius);
  box-shadow:0 26px 70px rgba(22,18,14,0.14);
}
.standoutImage img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:72% center;
}
.standoutContent{
  max-width:760px;
}
.standoutList{
  display:grid;
  gap:0;
  margin-top:0;
}
.standoutItem{
  display:grid;
  grid-template-columns:18px 1fr;
  gap:16px;
  padding:0;
  margin-bottom:20px;
}
.standoutItem:last-child{
  margin-bottom:0;
}
.standoutItem__mark{
  width:9px;
  height:9px;
  margin-top:9px;
  border-radius:50%;
  background:var(--gold);
  box-shadow:0 0 0 6px rgba(199,154,66,0.14);
}
.standoutItem h3{
  margin:0 0 8px;
  font-size:22px;
}
.standoutItem p{
  line-height:1.7;
  font-size:15px;
}
.standoutSubsection{
  scroll-margin-top:92px;
}
.membersSection{
  background:#fff;
  color:#071324;
}
.membersIntro{
  max-width:880px;
  margin:0 auto 58px;
  text-align:center;
}
.membersIntro h3{
  margin:0;
  font-family:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  font-size:44px;
  line-height:1.12;
  font-weight:850;
  letter-spacing:0;
}
.membersIntro p{
  margin:22px 0 0;
  color:#66758a;
  font-size:21px;
  line-height:1.45;
}
.membersGrid{
  max-width:1120px;
  margin-inline:auto;
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:28px;
}
.memberCard{
  overflow:hidden;
  border-radius:8px;
  background:#fff;
  color:#031226;
  text-align:center;
  box-shadow:0 6px 16px rgba(12,18,28,0.14);
}
.memberPhoto{
  position:relative;
  overflow:hidden;
  aspect-ratio:1.06 / 1;
  background:#111;
}
.memberPhoto::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(7,13,22,0.18);
  pointer-events:none;
}
.memberPhoto img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  filter:blur(8px) saturate(0.78) brightness(0.9);
  transform:scale(1.05);
}
.memberPhoto span{
  position:absolute;
  left:50%;
  bottom:14px;
  z-index:1;
  min-height:30px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transform:translateX(-50%);
  padding:6px 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.9);
  color:#071324;
  font-size:12px;
  font-weight:850;
  letter-spacing:0.02em;
  white-space:nowrap;
}
.memberCard__body{
  padding:26px 16px 28px;
}
.memberName{
  margin:0 0 10px;
  font-family:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  font-size:20px;
  line-height:1.2;
  font-weight:850;
}
.memberCard p{
  margin:0;
}
.memberMeta{
  color:#020b18;
  font-size:17px;
  line-height:1.35;
  font-weight:750;
}
.memberLocation{
  margin-top:12px;
  color:#58677d;
  font-size:16px;
  line-height:1.35;
}
.membersCta{
  width:min(280px, 100%);
  min-height:62px;
  display:flex;
  margin:46px auto 0;
  background:#262626;
  color:#fff;
  border-color:#262626;
  border-radius:8px;
  font-size:17px;
  font-weight:800;
}

.reviewsSection{
  background:#fff;
}
.reviewsIntro{
  max-width:860px;
  margin:0 auto 44px;
  text-align:center;
}
.reviewsIntro h3{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:44px;
  line-height:1.08;
  font-weight:800;
  letter-spacing:0;
  color:var(--text);
}
.reviewsIntro p{
  margin:16px auto 0;
  max-width:76ch;
  color:var(--muted);
  font-size:17px;
  line-height:1.7;
}
.storyGrid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:20px;
  max-width:1280px;
  margin-inline:auto;
}
.storyCard{
  position:relative;
  display:flex;
  min-height:310px;
  flex-direction:column;
  padding:26px;
  border-color:#e9edf2;
  box-shadow:0 14px 34px rgba(12,18,28,0.08);
}
.reviewStars{
  color:var(--gold);
  font-size:15px;
  letter-spacing:0.06em;
  line-height:1;
}
.reviewName{
  margin:18px 0 12px;
  font-family:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  font-size:19px;
  line-height:1.22;
  color:#071324;
}
.storyCard p{
  font-family:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  font-size:15px;
  line-height:1.65;
  color:#263244;
}
.storyCard .reviewQuote{
  margin:0 0 16px;
  padding:12px 14px;
  border-left:3px solid var(--gold);
  background:#fffaf2;
  color:#071324;
  font-size:15px;
  line-height:1.6;
  font-weight:650;
}

.faqWrap{max-width:900px}
.faq{
  overflow:hidden;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:#fff;
  box-shadow:0 18px 50px rgba(22,18,14,0.08);
}
.faq details{border-top:1px solid var(--line)}
.faq details:first-child{border-top:0}
.faq summary{
  cursor:pointer;
  position:relative;
  list-style:none;
  padding:20px 60px 20px 22px;
  font-weight:850;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{
  content:"+";
  position:absolute;
  right:20px;
  top:17px;
  width:30px;
  height:30px;
  display:grid;
  place-items:center;
  border-radius:50%;
  border:1px solid var(--line);
  color:var(--wine);
}
.faq details[open] summary::after{content:"-"}
.faq details p{
  margin:0;
  padding:0 22px 20px;
  color:var(--muted);
}

.finalCta{
  position:relative;
  padding:94px 0;
  background:var(--ink);
  color:#fff;
}
.finalCta__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(18,17,18,0.9), rgba(18,17,18,0.64), rgba(18,17,18,0.28)),
    url("../images/banner-optimized.jpg");
  background-size:cover;
  background-position:center right;
}
.finalCta__inner{
  position:relative;
  max-width:760px;
}
.finalCta p{color:rgba(255,255,255,0.76)}
.finalCta__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
}

.footer{
  padding:28px 0;
  background:#0d0d0e;
  color:#fff;
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand--footer .brand__mark{width:32px; height:32px}
.footer p{
  margin:10px 0 0;
  color:rgba(255,255,255,0.58);
  font-size:13px;
}
.footer__links{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:16px;
  color:rgba(255,255,255,0.72);
  font-size:14px;
}
.footer__links a:hover{color:#fff}

.legalPage{
  background:#fff;
}
.legalMain{
  padding:70px 0;
}
.legalHero{
  max-width:860px;
  margin-inline:auto;
  text-align:center;
}
.legalHero h1{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:48px;
  line-height:1.1;
  color:var(--text);
}
.legalHero p{
  margin:16px auto 0;
  max-width:68ch;
  color:var(--muted);
}
.legalContent{
  max-width:860px;
  margin:46px auto 0;
  color:var(--muted);
  font-size:16px;
  line-height:1.75;
}
.legalContent h2{
  margin:34px 0 10px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:28px;
  line-height:1.18;
  color:var(--text);
}
.legalContent p,
.legalContent ul{
  margin:12px 0 0;
}
.legalContent ul{
  padding-left:20px;
}
.legalContent a{
  color:#9b6f18;
  font-weight:800;
  text-decoration:underline;
  text-underline-offset:3px;
}

@media (max-width: 1040px){
  .siteHeader__inner{
    grid-template-columns:1fr auto;
    gap:14px;
    padding:12px 0;
  }
  .siteNav{
    grid-column:1 / -1;
    grid-row:2;
    justify-content:flex-start;
    overflow-x:auto;
    padding-bottom:2px;
  }
  .siteNav::-webkit-scrollbar{height:0}
  .hero h1{font-size:54px}
  .storyGrid{grid-template-columns:1fr 1fr}
  .membersGrid{grid-template-columns:repeat(3, minmax(0, 1fr))}
  .stepsGrid{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .stepCard:not(:last-child)::after{display:none}
  .standoutLayout{
    gap:36px;
  }
  .standoutImage{
    height:560px;
  }
  .sectionHead{
    align-items:flex-start;
    flex-direction:column;
  }
}

@media (max-width: 720px){
  .container{width:min(var(--max), calc(100% - 30px))}
  .siteHeader__inner{
    min-height:auto;
    grid-template-columns:1fr;
    gap:10px;
    padding:12px 0;
  }
  .siteHeader{
    position:relative;
    background:#121112;
  }
  .brand{justify-content:center}
  .brand__name{font-size:17px}
  .brand__mark{
    width:32px;
    height:32px;
  }
  .headerActions{
    width:100%;
    justify-content:center;
    gap:10px;
  }
  .headerActions .btn{
    flex:1 1 0;
    max-width:176px;
    min-height:42px;
    padding:9px 12px;
    font-size:14px;
  }
  .siteNav{
    display:none;
  }
  .hero{min-height:calc(100svh - 110px)}
  .hero__bg{
    background:
      linear-gradient(180deg, rgba(18,17,18,0.9), rgba(18,17,18,0.72), rgba(18,17,18,0.36)),
      url("../images/elite-dating-site.jpg");
    background-size:cover;
    background-position:center;
  }
  .hero__inner{
    min-height:calc(100svh - 110px);
    justify-content:center;
    padding:42px 0 38px;
  }
  .eyebrow{
    margin-bottom:10px;
    font-size:11px;
  }
  .hero h1{
    max-width:14ch;
    font-size:42px;
    line-height:1.04;
  }
  .hero__copy{
    max-width:30ch;
    margin-top:14px;
    font-size:17px;
    line-height:1.48;
  }
  .hero__actions{
    width:100%;
    max-width:420px;
    margin-top:24px;
  }
  .hero__actions .btn{
    flex:1 1 100%;
  }
  .trustLine{
    width:100%;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:6px 14px;
    margin-top:16px;
    padding:0;
    border:0;
    color:rgba(255,255,255,0.58);
    text-align:center;
    font-size:12px;
    font-weight:650;
  }
  .trustLine span{
    display:inline;
    padding:0;
  }
  .trustLine span::before{
    display:none;
  }
  .trustLine span:not(:first-child)::before{
    display:none;
  }
  .section{padding:58px 0}
  .sectionHead h2,
  .standoutIntro h2,
  .membersIntro h3,
  .reviewsIntro h3,
  .finalCta h2,
  .articleBlock h2,
  .howIntro h2{font-size:34px}
  .section--how{
    padding:62px 0;
  }
  .howIntro{
    margin-bottom:30px;
  }
  .howIntro p{
    font-size:16px;
  }
  .membersGrid,
  .storyGrid{grid-template-columns:1fr}
  .membersIntro{
    margin-bottom:34px;
  }
  .membersIntro p{
    margin-top:14px;
    font-size:17px;
  }
  .standoutLayout{
    grid-template-columns:1fr;
    gap:30px;
  }
  .standoutImage{
    height:auto;
    aspect-ratio:16 / 10;
    border-radius:var(--radius);
  }
  .standoutContent{
    max-width:none;
  }
  .stepsGrid{
    grid-template-columns:1fr;
    gap:14px;
    padding:0;
  }
  .stepCard{
    min-height:0;
    padding:26px 22px 28px;
  }
  .footer__inner{
    align-items:flex-start;
    flex-direction:column;
  }
  .footer__links{justify-content:flex-start}
  .legalMain{padding:52px 0}
  .legalHero h1{font-size:36px}
}

@media (max-width: 420px){
  .container{width:min(var(--max), calc(100% - 24px))}
  .brand__name{font-size:16px}
  .brand__mark{width:30px; height:30px}
  .headerActions{
    gap:8px;
  }
  .headerActions .btn{
    min-width:0;
    padding-inline:10px;
    font-size:14px;
  }
  .siteNav{
    gap:14px;
    font-size:13px;
  }
  .hero h1{font-size:36px}
  .membersIntro h3{font-size:32px}
  .reviewsIntro h3{font-size:31px}
  .btn--large,
  .hero__actions .btn,
  .finalCta__actions .btn{width:100%}
  .trustLine{
    gap:5px 12px;
    padding:0 10px;
  }
  .trustLine span{justify-content:center}
  .trustLine span:not(:first-child)::before{
    display:none;
  }
  .storyCard{padding:20px}
  .howIntro h2{font-size:31px}
  .stepsGrid{padding:0}
  .stepCard{
    padding:24px 18px 26px;
  }
  .stepCard__num{
    width:36px;
    height:36px;
    font-size:17px;
  }
  .standoutImage{aspect-ratio:4 / 3}
  .standoutList{
    margin-top:24px;
  }
  .standoutItem{
    grid-template-columns:14px 1fr;
    gap:12px;
    padding-bottom:18px;
    margin-bottom:18px;
  }
  .standoutItem__mark{
    width:8px;
    height:8px;
    margin-top:8px;
    box-shadow:0 0 0 5px rgba(199,154,66,0.14);
  }
  .faq summary{padding:18px 54px 18px 18px}
  .faq details p{padding:0 18px 18px}
}
