@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background: #ffffff;
  color: #111;
  line-height: 1.6;
}

.site-wrap {
  max-width: 1240px;   /* wider than typical, Google Play–like */
  margin: 0 auto;
  padding: 0 20px;     /* breathing room on sides */
}


:root{
  --bg:#fff;
  --text:#111827;
  --muted:#6b7280;
  --border:rgba(17,24,39,.10);
  --shadow:0 10px 30px rgba(17,24,39,.12);
  --radius:14px;
}

*{box-sizing:border-box}
body{margin:0;font-family:'Inter', system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:var(--text)}

.vm-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:var(--bg);
  border-bottom:1px solid var(--border);
}

.vm-header__inner{
  max-width:1100px;
  margin:0 auto;
  padding:12px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

/* Logo */
.vm-logo{
  display:flex;
  align-items:center;          /* vertical center */
  gap:12px;
  text-decoration:none;
  color:#111827;
}

.vm-logo img{
  width:44px;                  /* slightly bigger */
  height:44px;
  object-fit:contain;
}

.vm-logo span{
  font-size:20px;              /* INCREASED text size */
  font-weight:800;             /* bold like app brands */
  line-height:1;               /* text height control */
}

/* Hamburger */
.vm-hamburger{
  width:44px;
  height:44px;
  border:0;
  background:transparent;
  border-radius:12px;
  cursor:pointer;
  position:relative;
}
.vm-hamburger:hover{background:rgba(17,24,39,.06)}
.vm-hamburger span{
  position:absolute;
  left:11px;
  right:11px;
  height:2px;
  background:var(--text);
  border-radius:2px;
}
.vm-hamburger span:nth-child(1){top:14px}
.vm-hamburger span:nth-child(2){top:21px}
.vm-hamburger span:nth-child(3){top:28px}

/* Backdrop */
.vm-backdrop{
  position:fixed;
  inset:0;
  background:rgba(17,24,39,.45);
  z-index:1100;
}

/* Drawer */
.vm-drawer{
  position:fixed;
  top:0;
  left:0;
  height:100%;
  width:min(86vw,360px);
  background:var(--bg);
  z-index:1200;
  box-shadow:var(--shadow);
  transform:translateX(-100%);
  transition:transform .22s ease;
  display:flex;
  flex-direction:column;
}
.vm-drawer.is-open{transform:translateX(0)}

.vm-drawer__top{
  padding:14px;
  border-bottom:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.vm-drawer__title{font-weight:900}
.vm-drawer__close{
  border:0;
  background:transparent;
  font-size:18px;
  cursor:pointer;
  width:40px;
  height:40px;
  border-radius:12px;
}
.vm-drawer__close:hover{background:rgba(17,24,39,.06)}

.vm-menu{
  list-style:none;
  padding:10px 8px;
  margin:0;
  overflow:auto;
}
.vm-menu__link{
  display:block;
  padding:12px 12px;
  border-radius:12px;
  text-decoration:none;
  color:var(--text);
  font-weight:650;
}
.vm-menu__link:hover{background:rgba(17,24,39,.06)}

/* Desktop: show menu inline if you want (optional)
   Abhi simple rakhte hue hamburger ko desktop par bhi rehne dein.
*/





/* Container */
.gp-hero{
  background:#fff;
  padding: 14px 0 18px;
}
.gp-container{
  max-width: 520px;           /* mobile play-store like */
  margin: 0 auto;
  padding: 0 14px;
}

/* App top */
.gp-app{
  display:flex;
  gap:14px;
  align-items:flex-start;
  margin-top: 6px;
}

.gp-app__icon img{
  width:72px;
  height:72px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(17,24,39,.10);
  background:#fff;
}

.gp-app__meta{ flex:1; min-width:0; }
.gp-app__name{
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 6px;
  font-weight: 800;
  color:#111827;
}
.gp-app__dev{
  display:inline-block;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: #15803d; /* google-play green vibe */
  margin-bottom: 4px;
}
.gp-app__dev:hover{ text-decoration: underline; }

.gp-app__note{
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 10px;
}

/* Stats row */
.gp-stats{
  display:flex;
  align-items: center;
  gap: 10px;
  user-select:none;
}

.gp-stat{
  min-width: 0;
  text-align: left;
}
.gp-stat__top{
  display:flex;
  align-items:center;
  gap:6px;
  font-weight: 800;
  color:#111827;
}
.gp-stat__val{ font-size: 14px; }
.gp-star{ font-size: 14px; }

.gp-stat__sub{
  font-size: 11px;
  color:#6b7280;
  margin-top: 2px;
  white-space: nowrap;
}

.gp-divider{
  width:1px;
  height: 26px;
  background: rgba(17,24,39,.12);
}

/* Age box like Play Store */
.gp-age{ justify-content:flex-start; }
.gp-age__box{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 3px 7px;
  border-radius: 7px;
  border:1px solid rgba(17,24,39,.18);
  font-size: 12px;
  font-weight: 900;
}

/* CTA */
.gp-cta{
  margin-top: 14px;
}
.gp-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height: 44px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 800;
  font-size: 15px;
}
.gp-btn--primary{
  background:#16a34a;
  color:#fff;
}
.gp-btn--primary:hover{ background:#12803b; }

.gp-actions{
  display:flex;
  justify-content:center;
  gap: 20px;
  margin-top: 10px;
}

.gp-action{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  text-decoration:none;
  color:#15803d;
  font-weight: 800;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 999px;
}
.gp-action:hover{ background: rgba(21,128,61,.08); }

.gp-ico{
  font-size: 16px;
  line-height: 1;
}

/* Screenshots horizontal scroll */
.gp-shots{
  margin-top: 16px;
  display:flex;
  gap: 10px;
  overflow:auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
}
.gp-shots::-webkit-scrollbar{ height: 6px; }
.gp-shot{
  flex: 0 0 auto;
  scroll-snap-align: start;
}
.gp-shot img{
  width: 120px;
  height: 220px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(17,24,39,.10);
}

/* About card */
.gp-about{
  margin-top: 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 16px;
  border:1px solid rgba(17,24,39,.10);
  text-decoration:none;
  color:#111827;
}
.gp-about:hover{ background: rgba(17,24,39,.04); }

.gp-about__title{
  font-weight: 900;
  margin-bottom: 6px;
}
.gp-about__text{
  font-size: 12px;
  color:#6b7280;
  line-height: 1.35;
}
.gp-about__arrow{
  font-size: 24px;
  color:#6b7280;
}


/* Section spacing */
.gp-section{ padding: 10px 0 18px; }

/* Heading row with arrow (like Google Play) */
.gp-rowhead{
  margin-top: 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  text-decoration:none;
  color:#111827;
}
.gp-rowhead__title{
  font-weight: 900;
  font-size: 15px;
}
.gp-rowhead__arrow{
  font-size: 22px;
  color:#6b7280;
}

/* Paragraph text */
.gp-paragraph{
  margin: 10px 0 0;
  font-size: 12.5px;
  line-height: 1.45;
  color:#111827;
}
.gp-paragraph--muted{
  color:#6b7280;
}

/* Updated on block */
.gp-meta{
  margin-top: 14px;
}
.gp-meta__label{
  font-size: 12px;
  color:#6b7280;
  margin-bottom: 4px;
}
.gp-meta__value{
  font-size: 12.5px;
  color:#111827;
  font-weight: 700;
}

/* Chips */
.gp-chips{
  margin-top: 10px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.gp-chip{
  font-size: 11.5px;
  font-weight: 700;
  color:#374151;
  border: 1px solid rgba(17,24,39,.12);
  padding: 6px 10px;
  border-radius: 999px;
  background:#fff;
}

/* Data safety card */
.gp-card{
  margin-top: 12px;
  border: 1px solid rgba(17,24,39,.10);
  border-radius: 16px;
  background:#fff;
  padding: 10px 10px 12px;
}

.gp-card__item{
  display:flex;
  gap: 10px;
  padding: 10px 8px;
  border-radius: 12px;
}

.gp-card__icon{
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(17,24,39,.05);
  flex: 0 0 28px;
}

.gp-card__text{
  font-size: 12.5px;
  color:#111827;
  line-height: 1.35;
  font-weight: 650;
}

.gp-card__sub{
  display:inline-block;
  margin-top: 3px;
  font-size: 11.5px;
  color:#6b7280;
  font-weight: 600;
}

.gp-card__link{
  display:inline-block;
  margin-top: 6px;
  padding: 8px 10px;
  font-size: 12.5px;
  font-weight: 900;
  color:#15803d;
  text-decoration:none;
  border-radius: 999px;
}
.gp-card__link:hover{
  background: rgba(21,128,61,.08);
}





/* Ratings header subtitle */
.gp-rowhead__sub{
  margin-top: 4px;
  font-size: 12px;
  color: #6b7280;
  font-weight: 600;
}

/* device pills */
.gp-device{
  margin-top: 10px;
  display:flex;
  gap:10px;
  flex-wrap: wrap;
}
.gp-pill{
  border: 1px solid rgba(17,24,39,.12);
  background:#fff;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color:#111827;
  cursor:pointer;
}
.gp-pill.is-active{
  background: rgba(21,128,61,.10);
  border-color: rgba(21,128,61,.25);
  color:#15803d;
}

/* rating summary block */
.gp-rating{
  margin-top: 14px;
  display:flex;
  gap: 16px;
  align-items:flex-start;
}

.gp-rating__left{ width: 44%; }
.gp-rating__score{
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}
.gp-rating__stars{
  margin-top: 6px;
  color: #15803d;
  font-weight: 900;
  font-size: 14px;
}
.gp-rating__count{
  margin-left: 8px;
  color:#6b7280;
  font-weight: 700;
  font-size: 12px;
}

/* right rating bars */
.gp-rating__right{
  flex:1;
  padding-top: 6px;
}


/* Ensure rating bars always have space on mobile */
.gp-rating__right{
  width: 100%;
}

/* Make bar rows full width (mobile) */
.gp-bar__track{
  width: 100%;
}

/* Prevent flex shrinking issues */
.gp-rating__right,
.gp-bar__track{
  min-width: 0;
}


@media (max-width: 420px){
  .gp-rating{
    flex-direction: column;
  }
  .gp-rating__left{
    width: 100%;
  }
  .gp-rating__right{
    width: 100%;
    margin-top: 10px;
  }
}

.gp-bar{
  display:flex;
  align-items:center;
  gap: 8px;
  margin: 6px 0;
}
.gp-bar__label{
  width: 14px;
  font-size: 12px;
  color:#6b7280;
  font-weight: 800;
}
.gp-bar__track{
  flex:1;
  height: 8px;
  border-radius: 999px;
  background: rgba(17,24,39,.10);
  overflow:hidden;
}
.gp-bar__fill{
  display:block;
  height: 100%;
  background: #15803d;
  border-radius: 999px;
}

/* reviews */
.gp-reviews{ margin-top: 14px; display:grid; gap: 14px; }

.gp-review{
  padding: 12px 0 0;
  border-top: 1px solid rgba(17,24,39,.08);
}
.gp-review:first-child{ border-top: 0; padding-top: 0; }

.gp-review__top{
  display:flex;
  align-items:flex-start;
  gap: 10px;
}

.gp-avatar{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(17,24,39,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  color:#374151;
  flex: 0 0 34px;
}
.gp-avatar--img{ overflow:hidden; padding:0; }
.gp-avatar--img img{ width:100%; height:100%; object-fit:cover; }

.gp-review__meta{ flex:1; min-width:0; }
.gp-review__name{
  font-weight: 900;
  font-size: 13px;
  color:#111827;
}
.gp-review__row{
  margin-top: 4px;
  display:flex;
  align-items:center;
  gap: 10px;
}
.gp-review__stars{
  color:#15803d;
  font-weight: 900;
  font-size: 13px;
}
.gp-review__date{
  color:#6b7280;
  font-size: 12px;
  font-weight: 700;
}

.gp-kebab{
  border:0;
  background:transparent;
  cursor:pointer;
  font-size: 18px;
  color:#6b7280;
  width: 36px;
  height: 36px;
  border-radius: 10px;
}
.gp-kebab:hover{ background: rgba(17,24,39,.06); }

.gp-review__text{
  margin: 10px 0 0;
  font-size: 12.5px;
  line-height: 1.45;
  color:#111827;
}

.gp-review__helpful{
  margin-top: 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.gp-review__helpfulText{
  color:#6b7280;
  font-weight: 700;
  font-size: 12px;
}
.gp-review__helpfulBtns{
  display:flex;
  gap: 10px;
}
.gp-helpbtn{
  border: 1px solid rgba(17,24,39,.12);
  background:#fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  cursor:pointer;
}
.gp-helpbtn:hover{ background: rgba(17,24,39,.05); }

/* see all */
.gp-seeall{
  display:inline-block;
  margin-top: 12px;
  text-decoration:none;
  font-weight: 900;
  color:#15803d;
  padding: 8px 10px;
  border-radius: 999px;
}
.gp-seeall:hover{ background: rgba(21,128,61,.08); }

/* responsive */
@media (max-width: 420px){
  .gp-rating{ flex-direction: column; }
  .gp-rating__left{ width: 100%; }
}



.content{
  max-width: 520px;
  margin: 0 auto;
  padding: 20px 14px;
  line-height: 1.6;
}

.content h2{
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10px;
}

.content h3{
  font-size: 14.5px;
  font-weight: 700;
  margin: 18px 0 6px;
}

.content p{
  font-size: 13.5px;
  color: #374151;
  margin: 0 0 10px;
}

.content ul{
  padding-left: 18px;
  margin: 6px 0 12px;
}

.content li{
  font-size: 13.5px;
  color: #374151;
  margin-bottom: 6px;
}



.faq{
  max-width: 520px;
  margin: 0 auto;
  padding: 20px 14px;
}

.faq h2{
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 14px;
}

.faq details{
  border-bottom: 1px solid #e5e7eb;
  padding: 10px 0;
}

.faq details:last-child{
  border-bottom: none;
}

.faq summary{
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker{
  display: none;
}

.faq summary::after{
  content: "+";
  float: right;
  font-size: 16px;
  color: #6b7280;
}

.faq details[open] summary::after{
  content: "−";
}

.faq p{
  font-size: 13.5px;
  color: #374151;
  margin: 8px 0 0;
  line-height: 1.5;
}



.footer{
  border-top: 1px solid #e5e7eb;
  padding: 20px 14px 24px;
  background: #fff;
}

.footer-inner{
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand{
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 10px;
}

.footer-links{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-links a{
  font-size: 13px;
  color: #374151;
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover{
  text-decoration: underline;
}

.footer-copy{
  font-size: 12.5px;
  color: #6b7280;
  margin-bottom: 6px;
}

.footer-note{
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.4;
}


#backToTopBtn{
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #16a34a;          /* green accent */
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  display: none;                /* hidden by default */
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  z-index: 999;
}

#backToTopBtn:hover{
  background: #12803b;
}

#backToTopBtn:focus{
  outline: none;
}



.download-page{
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 16px;
}

.download-page h1{
  font-size: 22px;
  margin-bottom: 6px;
}

.subtitle{
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 16px;
}

.download-btn{
  display: inline-block;
  background: #16a34a;
  color: #fff;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 18px;
}

.download-btn:hover{
  background: #12803b;
}

.app-info{
  padding-left: 18px;
  margin-bottom: 12px;
}

.app-info li{
  font-size: 14px;
  margin-bottom: 4px;
}

.security-note{
  font-size: 13.5px;
  color: #374151;
  margin-bottom: 20px;
}

.download-page h2{
  font-size: 16px;
  margin-bottom: 8px;
}

.download-page ol{
  padding-left: 18px;
}

.download-page ol li{
  font-size: 14px;
  margin-bottom: 6px;
}


.page-content{
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 16px;
  line-height: 1.65;
}

.page-content h1{
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
}

.page-content h2{
  font-size: 16px;
  font-weight: 700;
  margin: 22px 0 8px;
}

.page-content p{
  font-size: 14px;
  color: #374151;
  margin-bottom: 12px;
}

.page-content ul{
  padding-left: 18px;
  margin-bottom: 14px;
}

.page-content li{
  font-size: 14px;
  color: #374151;
  margin-bottom: 6px;
}

.page-content a{
  color: #15803d;
  text-decoration: none;
  font-weight: 600;
}

.page-content a:hover{
  text-decoration: underline;
}



/* ============ Global Typography Upgrade ============ */

/* Bigger base everywhere */
html { font-size: 17px; }     /* was effectively looking like 14-16 */
body { line-height: 1.65; }

/* Desktop slightly bigger */
@media (min-width: 900px){
  html { font-size: 18px; }
}

/* Headings (site-wide) */
h1 { font-size: 1.55rem; line-height: 1.2; }
h2 { font-size: 1.18rem; line-height: 1.25; }
h3 { font-size: 1.05rem; line-height: 1.3; }

/* Your text sections (article/pages/faqs) */
.content p,
.page-content p,
.faq p,
.download-page p {
  font-size: 1rem;
}

.content li,
.page-content li,
.download-page li {
  font-size: 1rem;
}

/* ===== Google-Play UI text overrides (these were small) ===== */

/* About / safety paragraphs */
.gp-paragraph,
.gp-paragraph--muted {
  font-size: 0.98rem;
  line-height: 1.55;
}

/* Reviews text */
.gp-review__text {
  font-size: 0.98rem;
  line-height: 1.55;
}

/* Small meta text (keep readable, not tiny) */
.gp-stat__sub,
.gp-meta__label,
.gp-meta__value,
.gp-chip,
.gp-review__date,
.gp-rating__count,
.gp-review__helpfulText {
  font-size: 0.90rem;
}

/* Buttons/pills slightly bigger */
.gp-pill,
.gp-helpbtn,
.gp-btn,
.download-btn {
  font-size: 0.95rem;
}



/* ===== FORCE HEADING SIZE FIX (OVERRIDE ALL) ===== */

/* About / Content / Pages */
.page-content h1,
.content h1,
.gp-section h1{
  font-size: 34px !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
}

.page-content h2,
.content h2,
.gp-section h2{
  font-size: 24px !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
  margin-top: 28px !important;
}

.page-content h3,
.content h3,
.gp-section h3{
  font-size: 20px !important;
  line-height: 1.35 !important;
  font-weight: 700 !important;
  margin-top: 22px !important;
}

/* Mobile tuning */
@media (max-width: 480px){
  .page-content h1,
  .content h1,
  .gp-section h1{
    font-size: 28px !important;
  }

  .page-content h2,
  .content h2,
  .gp-section h2{
    font-size: 21px !important;
  }

  .page-content h3,
  .content h3,
  .gp-section h3{
    font-size: 18px !important;
  }
}


/* ===== Section heading background ===== */

.page-content h2,
.content h2,
.gp-section h2{
  background: #f3f4f6;          /* light neutral */
  padding: 10px 14px;
  border-left: 4px solid #16a34a; /* brand green accent */
  border-radius: 6px;
}



/* Reset default bullets */
.content ul {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

/* List items */
.content ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.6;
}

/* Red bullet / triangle */
.content ul li::before {
  content: "▶";
  position: absolute;
  left: 0;
  top: 2px;
  color: #e63946;
  font-size: 12px;
}



.content h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 40px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e63946;
}


.content h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 40px 0 20px;
  padding-left: 12px;
  border-left: 4px solid #e63946;
}


.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 25px;
  font-size: 16px;
}

.compare-table th,
.compare-table td {
  border: 1px solid #e0e0e0;
  padding: 12px;
  text-align: center;
}

.compare-table th {
  background: #f9f9f9;
  font-weight: 700;
}

.compare-table td:first-child {
  text-align: left;
  font-weight: 500;
}

.compare-table .yes {
  color: #2ecc71;
  font-weight: 700;
  font-size: 18px;
}

.compare-table .no {
  color: #e63946;
  font-weight: 700;
  font-size: 18px;
}



/* FAQ container – matches article width */
.faq {
  max-width: 720px;      /* match your article text width */
  width: 100%;
  margin: 40px auto;
  padding: 28px 24px;
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  box-sizing: border-box;
}

/* FAQ heading */
.faq h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 22px;
}

/* FAQ item */
.faq details {
  border-bottom: 1px solid #eeeeee;
  padding: 14px 0;
}

.faq details:last-child {
  border-bottom: none;
}

/* Question */
.faq summary {
  list-style: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  padding-left: 22px;
  padding-right: 28px;
  position: relative;
}

/* Remove default marker */
.faq summary::-webkit-details-marker {
  display: none;
}

/* Left red triangle */
.faq summary::before {
  content: "▶";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 12px;
  color: #e63946;
}

/* Right plus / minus */
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 20px;
  color: #999;
}

.faq details[open] summary::after {
  content: "−";
}

/* Answer text */
.faq p {
  margin: 10px 0 0 22px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* Mobile fix */
@media (max-width: 768px) {
  .faq {
    padding: 22px 18px;
  }

  .faq h2 {
    font-size: 22px;
  }
}
