
  :root {
    --ink: #1C1008;
    --parchment: #FAF7F2;
    --cream: #FFF4EA;
    --gold: #E8650A;
    --gold-light: #FFB37A;
    --teal: #C85208;
    --teal-light: #FDEEDE;
    --whatsapp: #E8650A;
    --whatsapp-dark: #C85208;
    --muted: #7A6A5A;
    --border: #F0E0CC;
    --red-accent: #BF4506;
  }  

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--parchment);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
  }
img{
    max-width:100%;
}
  /* ── STICKY HEADER ── */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    padding: 0.75rem .5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    box-shadow: 0 2px 16px rgba(232,101,10,0.08);
    border-bottom: 1px solid var(--border);
  }
  .logo-text {
    font-family: 'Playfair Display', serif;
    color: var(--ink);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
  }
  .logo-text span { color: var(--gold); }
  .header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
  }
  .header-badge {
    background: var(--teal-light);
    border: 1px solid rgba(232,101,10,0.3);
    color: var(--teal);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .btn-whatsapp-header {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--whatsapp);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
  }
  .btn-whatsapp-header:hover { background: var(--whatsapp-dark); transform: translateY(-1px); }

  /* ── HERO ── */
  .hero {
    position: relative;
    background: var(--cream);
    overflow: hidden;
    padding: 5rem 1.5rem 4rem;
    border-bottom: 1px solid var(--border);
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 80% at 85% 10%, rgba(232,101,10,0.1) 0%, transparent 60%),
      radial-gradient(ellipse 40% 50% at 5% 95%, rgba(232,101,10,0.07) 0%, transparent 60%);
    pointer-events: none;
  }
  .hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(232,101,10,0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(232,101,10,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
  }
  .hero-inner {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(232,101,10,0.1);
    border: 1px solid rgba(232,101,10,0.3);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 1.25rem;
  }
  .hero-eyebrow .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse-dot 2s infinite; }
  @keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    color: var(--ink);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold);
  }
  .hero-sub {
    color: var(--muted);
    font-size: 1.05rem;
    font-weight: 400;
    max-width: 480px;
    margin-bottom: 2rem;
    line-height: 1.7;
  }
  .hero-ctas {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
  }
  .btn-primary-wa {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--whatsapp);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    padding: 0.9rem 1.6rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(232,101,10,0.4);
  }
  .btn-primary-wa:hover { background: var(--whatsapp-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,101,10,0.5); }
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 0.9rem 1.4rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
  }
  .btn-secondary:hover { border-color: var(--gold); color: var(--gold); background: var(--teal-light); }
  .hero-micro {
    color: var(--muted);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  .hero-micro svg { flex-shrink: 0; color: var(--gold); }
  .hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .hero-stat { }
  .hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    display: block;
    line-height: 1;
  }
  .hero-stat-label {
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
  }

  /* ── SAMPLE CARD ── */
  .sample-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 8px 40px rgba(232,101,10,0.12);
    position: relative;
  }
  .sample-card::before {
    content: 'LIVE EDITING SAMPLE';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.2rem 0.75rem;
    border-radius: 20px;
    white-space: nowrap;
  }
  .sample-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.25rem;
    margin-top: 0.5rem;
  }
  .sample-card-sub {
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 1.1rem;
  }
  .sample-tabs {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.9rem;
  }
  .sample-tab {
    flex: 1;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.45rem 0;
    border-radius: 8px;
    cursor: pointer;
    border: 1.5px solid var(--border);
    background: var(--parchment);
    color: var(--muted);
    transition: all 0.2s;
  }
  .sample-tab.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
  }
  .sample-panel { display: none; }
  .sample-panel.active { display: block; }
  .sample-text-box {
    background: var(--parchment);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 1rem;
    font-size: 0.82rem;
    line-height: 1.75;
    color: var(--ink);
    min-height: 148px;
    position: relative;
  }
  .sample-text-box.after-box {
    border-color: rgba(232,101,10,0.3);
    background: #fff;
  }
  del {
    color: #C0392B;
    background: rgba(192,57,43,0.08);
    text-decoration: line-through;
    border-radius: 3px;
    padding: 0 2px;
  }
  ins {
    color: #1A7A4A;
    background: rgba(26,122,74,0.1);
    text-decoration: none;
    border-radius: 3px;
    padding: 0 2px;
    font-weight: 600;
  }
  .sample-comment {
    margin-top: 0.75rem;
    background: rgba(232,101,10,0.07);
    border-left: 3px solid var(--gold);
    border-radius: 0 8px 8px 0;
    padding: 0.6rem 0.75rem;
    font-size: 0.75rem;
    color: var(--muted);
    font-style: italic;
  }
  .sample-comment strong { color: var(--gold); font-style: normal; }
  .sample-label {
    position: absolute;
    top: 0.6rem;
    right: 0.7rem;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
  }
  .label-before { background: rgba(192,57,43,0.1); color: #C0392B; }
  .label-after  { background: rgba(26,122,74,0.1);  color: #1A7A4A; }
  .sample-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.8rem;
    margin-bottom: 0.9rem;
    font-size: 0.72rem;
    color: var(--muted);
  }
  .sample-meta span { display: flex; align-items: center; gap: 0.3rem; }
  .btn-wa-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    background: var(--whatsapp);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    padding: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(232,101,10,0.35);
  }
  .btn-wa-main:hover { background: var(--whatsapp-dark); transform: translateY(-1px); }
  .card-footer-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.75rem;
  }
  .card-footer-note a { color: var(--gold); text-decoration: none; font-weight: 500; }

  /* ── TRUST BAR ── */
  .trust-bar {
    background: var(--gold);
    padding: 0.85rem 1.5rem;
  }
  .trust-bar-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
  }
  .trust-icon { font-size: 1rem; }

  /* ── SECTION COMMON ── */
  section { padding: 4rem 1.5rem; }
  .section-inner { max-width: 900px; margin: 0 auto; }
  .section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
    display: block;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
  }
  .section-sub {
    color: var(--muted);
    font-size: 1rem;
    max-width: 540px;
    margin-bottom: 2.5rem;
  }

  /* ── PROCESS ── */
  .process-section { background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  .step {
    text-align: center;
    position: relative;
  }
  .step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -1rem;
    top: 1.25rem;
    font-size: 1rem;
    color: var(--border);
    font-weight: 300;
  }
  .step-num {
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.9rem;
  }
  .step h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--ink);
  }
  .step p { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }

  /* ── FEATURES ── */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  .feature-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  }
  .feature-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(232,101,10,0.14);
    transform: translateY(-3px);
  }
  .feature-icon {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    display: block;
  }
  .feature-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.4rem;
  }
  .feature-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

  /* ── TESTIMONIALS ── */
  .testimonials-section { background: var(--parchment); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .testimonials-section .section-title { color: var(--ink); }
  .testimonials-section .section-sub { color: var(--muted); }
  .testimonials-section .section-label { color: var(--gold); }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  .review-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .review-card:hover { border-color: var(--gold); box-shadow: 0 6px 24px rgba(232,101,10,0.1); }
  .stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.75rem; }
  .review-text {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 1rem;
    font-style: italic;
  }
  .review-text::before { content: '"'; }
  .review-text::after { content: '"'; }
  .reviewer {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .reviewer-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
  }
  .reviewer-name { font-size: 0.82rem; font-weight: 600; color: var(--ink); }
  .reviewer-info { font-size: 0.72rem; color: var(--muted); }

  /* ── PRICING PREVIEW ── */
  .pricing-section { background: var(--cream); }
  .pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
  }
  .pricing-card {
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
    text-align: center;
    position: relative;
    transition: all 0.2s;
  }
  .pricing-card.popular {
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(232,101,10,0.18);
  }
  .popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    white-space: nowrap;
  }
  .pricing-type {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
  }
  .pricing-features { list-style: none; text-align: left; margin-bottom: 1.25rem; }
  .pricing-features li {
    font-size: 0.82rem;
    color: var(--muted);
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .pricing-features li::before { content: '✓'; color: var(--gold); font-weight: 700; }
  .btn-quote-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: var(--whatsapp);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 0.7rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
  }
  .btn-quote-card:hover { background: var(--whatsapp-dark); }
  .pricing-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--muted);
    background: var(--teal-light);
    border-radius: 10px;
    padding: 0.9rem 1.25rem;
  }
  .pricing-note strong { color: var(--gold); }

  /* ── FAQ ── */
  .faq-section { background: #fff; }
  .faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
  .faq-item {
    border: 1.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
  }
  .faq-q {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 1.1rem 1.25rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: background 0.15s;
  }
  .faq-q:hover { background: var(--parchment); }
  .faq-chevron { font-size: 1rem; color: var(--muted); transition: transform 0.2s; flex-shrink: 0; }
  .faq-item.open .faq-chevron { transform: rotate(180deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
    padding: 0 1.25rem;
  }
  .faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 1.25rem 1.1rem;
  }

  /* ── URGENCY BANNER ── */
  .urgency-bar {
    background: linear-gradient(135deg, var(--teal-light) 0%, #FFF0E0 100%);
    border-top: 2px solid rgba(232,101,10,0.2);
    border-bottom: 2px solid rgba(232,101,10,0.2);
    padding: 1.75rem 1.5rem;
    text-align: center;
  }
  .urgency-inner { max-width: 600px; margin: 0 auto; }
  .urgency-title {
    font-family: 'Playfair Display', serif;
    color: var(--ink);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  .urgency-title em { color: var(--gold); font-style: italic; }
  .urgency-sub { color: var(--muted); font-size: 0.88rem; margin-bottom: 1.25rem; }
  .urgency-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    flex-wrap: wrap;
  }

  /* ── FLOATING WA BUTTON ── */
  .float-wa {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 999;
    background: #1ca821;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(232,101,10,0.4);
    animation: float-bounce 3s ease-in-out infinite;
    transition: transform 0.2s;
  }
  .float-wa:hover { transform: scale(1.1); }
  @keyframes float-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }
  .float-wa-label {
    position: fixed;
    bottom: 2rem;
    left: 5rem;
    z-index: 999;
    background: #fff;
    color: var(--ink);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    white-space: nowrap;
    animation: label-fade 5s ease-in-out infinite;
  }
  .float-wa-label::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right: none;
    border-left-color: #fff;
  }
  @keyframes label-fade {
    0%, 80%, 100% { opacity: 1; }
    90% { opacity: 0.3; }
  }

  /* ── FOOTER ── */
  footer {
    background: var(--parchment);
    color: var(--muted);
    text-align: center;
    font-size: 0.78rem;
    padding: 1.5rem;
    border-top: 1px solid var(--border);
  }
  footer a { color: var(--gold); text-decoration: none; }
  footer a:hover { color: var(--teal); }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
    .quote-card { order: -1; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .step:not(:last-child)::after { display: none; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .pricing-cards { grid-template-columns: 1fr; }
    .trust-bar-inner { gap: 1.25rem; }
    .float-wa-label { display: none; }
  }
  @media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .header-badge { display: none; }
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow { animation: fadeUp 0.5s ease both; }
  .hero h1 { animation: fadeUp 0.5s ease 0.1s both; }
  .hero-sub { animation: fadeUp 0.5s ease 0.2s both; }
  .hero-ctas { animation: fadeUp 0.5s ease 0.3s both; }
  .hero-stats { animation: fadeUp 0.5s ease 0.4s both; }
  .quote-card { animation: fadeUp 0.6s ease 0.2s both; }

  /* WhatsApp SVG icon */
  .wa-icon { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

    ul.accordion-list {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  /* padding: 20px; */
  margin: 0;
  list-style: none;
  /* background-color: #f9f9fA; */
}
ul.accordion-list li {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  background-color: #FFF;
  padding: 20px;
  margin: 0 auto 15px auto;
  border: 1px solid #eee;
  border-radius: 5px;
  cursor: pointer;
}
ul.accordion-list li.active h3:after {
  transform: rotate(45deg);
}
ul.accordion-list li h3 {
  /* font-weight: 700; */
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 0 0 0 0;
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.01em;
  cursor: pointer;
}
ul.accordion-list li h3:after {
  content: "+";
  font-family: "material-design-iconic-font";
  position: absolute;
  right: 0;
  top: 0;
  color: #000;
  transition: all 0.3s ease-in-out;
  font-size: 18px;
}
ul.accordion-list li div.answer {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
ul.accordion-list li div.answer p {
  position: relative;
  display: block;
  font-weight: 300;
  padding: 10px 0 0 0;
  cursor: pointer;
  line-height: 150%;
  margin: 0 0 15px 0;
  /* font-size: 14px; */
}

@media(min-width:300px) and (max-width:767px){
  .btn-whatsapp-header {
    gap: 0.09rem;
    padding: 0.3rem .3rem;
}
.site-header {
    padding: 0.5rem .5rem;
    flex-wrap: wrap;
}
.hero {
    padding: 2rem 1rem 2rem;
}
ul.accordion-list li h3:after {
    right: -15px;
}
}
