* {
  box-sizing: border-box;
}

/* Плавный скролл при переходе по якорным ссылкам */
html {
  scroll-behavior: smooth;
}

:root {
  /* Brand palette (requested)
     #713600 #FFCA99 #D69456 #3D240C */
  --brand-900: #3D240C;
  --brand-800: #713600;
  --brand-300: #D69456;
  --brand-100: #FFCA99;
  --brand-50: #FFF5E9;

  --bg: var(--brand-50);
  --bg-soft: rgba(214, 148, 86, 0.18);
  --card: rgba(255, 255, 255, 0.85);

  --text: var(--brand-900);
  --muted: rgba(61, 36, 12, 0.68);
  --dim: rgba(61, 36, 12, 0.50);

  --accent: var(--brand-300);
  --accent-dark: var(--brand-800);

  --border: rgba(61, 36, 12, 0.10);
  --border-strong: rgba(61, 36, 12, 0.18);
  --shadow-sm: 0 4px 12px rgba(61, 36, 12, 0.08);
  --shadow: 0 16px 48px rgba(61, 36, 12, 0.12);
  --shadow-lg: 0 32px 80px rgba(61, 36, 12, 0.16);
  
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 1200px 600px at 80% -5%, rgba(214, 148, 86, 0.20), transparent 70%),
    radial-gradient(ellipse 800px 500px at 5% 100%, rgba(113, 54, 0, 0.08), transparent 60%);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.thank-you-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 90%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background: rgba(255, 245, 233, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-strong);
  box-shadow: 0 4px 24px rgba(61, 36, 12, 0.08), 0 1px 3px rgba(61, 36, 12, 0.04);
}

.site-header + main {
  padding-top: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.02em;
  font-size: 22px;
  color: var(--brand-800);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}

.nav a {
  color: var(--muted);
  position: relative;
  padding: 4px 0;
}

.nav .cta {
  color: #fff;
  min-width: 180px;
  justify-content: center;
}

.nav a:hover {
  color: var(--text);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.nav a:hover::after {
  width: 100%;
}

.hero {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, rgba(255, 202, 153, 0.25) 0%, transparent 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.03em;
  font-size: clamp(36px, 5vw, 60px);
  margin: 16px 0 20px;
  line-height: 1.15;
  color: var(--brand-900);
}

.subtitle {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  max-width: 480px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(214, 148, 86, 0.12);
  color: var(--accent-dark);
  border: 1px solid rgba(214, 148, 86, 0.25);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-row {
  display: flex;
  gap: 16px;
  align-items: baseline;
  margin: 24px 0 28px;
}

.price {
  font-size: 32px;
  font-weight: 600;
  color: var(--accent-dark);
  letter-spacing: -0.02em;
}

.muted {
  color: var(--muted);
  font-size: 14px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 24px;
}

.cards-cta {
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 78px;
}

.cards-cta-note {
  font-size: 13px;
}

.hero-actions .wrapper {
  display: flex;
  justify-content: center;
}

.cta {
  display: inline-flex;
  align-items: center;
  padding: 16px 53px;
  text-decoration: none;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #fff;
  background: var(--accent-dark);
  transition: 0.6s;
  box-shadow: 6px 6px 0 var(--brand-900);
  transform: skewX(-15deg);
}

.cta:focus {
  outline: none;
}

.cta:hover {
  transition: 0.35s;
  box-shadow: 10px 10px 0 var(--brand-300);
}

.cta span {
  transform: skewX(15deg);
  display: inline-block;
}

.cta span:nth-child(2) {
  width: 20px;
  margin-left: 24px;
  position: relative;
  top: 10%;
  display: inline-flex;
}

.cta span:nth-child(2) svg {
  transition: transform 0.5s;
}

.cta:hover span:nth-child(2) svg {
  transform: translateX(12px);
}

.cta path.one {
  transition: 0.4s;
  transform: translateX(-60%);
}

.cta path.two {
  transition: 0.5s;
  transform: translateX(-30%);
}

.cta:hover path.three {
  animation: color_anim 1s infinite 0.2s;
}

.cta:hover path.one {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.6s;
}

.cta:hover path.two {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.4s;
}

@keyframes color_anim {
  0% {
    fill: #fff;
  }
  50% {
    fill: var(--brand-100);
  }
  100% {
    fill: #fff;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-300) 0%, var(--brand-800) 100%);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(113, 54, 0, 0.25);
  letter-spacing: 0.01em;
}

.btn:hover {
  background: linear-gradient(135deg, var(--brand-800) 0%, var(--brand-900) 100%);
  box-shadow: 0 6px 24px rgba(113, 54, 0, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-strong);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(61, 36, 12, 0.05);
  border-color: var(--brand-300);
}

.btn-sm {
  padding: 11px 20px;
  font-size: 13px;
}

.hero-media img,
.results-media img,
.trust-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--dim);
}

.meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta span::before {
  content: '•';
  color: var(--accent);
}

.section {
  padding: 90px 0;
  position: relative;
}

.section-soft {
  background: linear-gradient(180deg, var(--bg-soft) 0%, rgba(255, 245, 233, 0.5) 100%);
}

/* ========================================
   Декоративные разделители секций
   ======================================== */

/* Градиентная линия с декоративным ромбом */
.section-divider {
  position: relative;
  padding-top: 100px !important;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--brand-300) 25%, 
    transparent 47%,
    transparent 53%,
    var(--brand-300) 75%, 
    transparent 100%
  );
}

.section-divider::after {
  content: '◆';
  position: absolute;
  top: 33px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: var(--brand-300);
  text-shadow: 0 2px 8px rgba(214, 148, 86, 0.3);
}

/* Вариант с двойным ромбом */
.section-divider-double::after {
  content: '◇ ◆ ◇';
  letter-spacing: 8px;
  font-size: 12px;
}

/* Вариант с тремя точками */
.section-divider-dots::after {
  content: '•  •  •';
  letter-spacing: 4px;
  font-size: 16px;
}

/* Анимация при появлении в viewport */
@keyframes dividerFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
  }
}

.section-divider::before {
  animation: dividerFadeIn 0.8s ease-out;
}

h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: clamp(26px, 3.5vw, 44px);
  margin-bottom: 32px;
  color: var(--brand-900);
}

.grid {
  display: grid;
  gap: 24px;
}

.benefits {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.benefit {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.45) 100%), var(--card);
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(61, 36, 12, 0.08);
  border: 1px solid rgba(214, 148, 86, 0.18);
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.benefit:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 148, 86, 0.35);
  box-shadow: 0 24px 50px rgba(61, 36, 12, 0.12);
}

.benefit h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--brand-800);
}

.benefit p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.results {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.price-highlight {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(214, 148, 86, 0.18);
  color: var(--accent-dark);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.checklist li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.6;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: rgba(214, 148, 86, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 12px;
}

.disclaimer {
  font-size: 13px;
  color: var(--dim);
  padding: 16px;
  background: rgba(214, 148, 86, 0.08);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
}

.trust {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.pill-list span {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  color: var(--brand-800);
}

.lead {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.lead-text h2 {
  margin-bottom: 16px;
}

.lead-text p {
  color: var(--muted);
  line-height: 1.7;
}

.lead-form {
  background: var(--card);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  gap: 20px;
  border: 1px solid var(--border);
}

.lead-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--brand-900);
}

.lead-form input {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-family: inherit;
}

.lead-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(214, 148, 86, 0.15);
}

.lead-form input::placeholder {
  color: var(--dim);
}

.lead-form .btn {
  margin-top: 8px;
  width: 100%;
}

.form-note {
  font-size: 12px;
  color: var(--dim);
  text-align: center;
  line-height: 1.6;
}

.form-note a {
  color: var(--accent-dark);
  text-decoration: underline;
}

/* Центрирование секции FAQ */
#faq .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#faq h2 {
  text-align: center;
}

.faq {
  display: grid;
  gap: 14px;
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
  text-align: left;
}

details {
  background: var(--card);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

details[open] {
  box-shadow: var(--shadow);
}

summary {
  font-weight: 600;
  cursor: pointer;
  font-size: 15px;
  color: var(--brand-900);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--accent);
}

details[open] summary::after {
  content: '−';
}

details p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

.footer {
  position: relative;
  padding: 48px 0 32px;
  background: linear-gradient(180deg, rgba(214, 148, 86, 0.08) 0%, rgba(61, 36, 12, 0.06) 100%);
  border-top: 1px solid var(--border-strong);
  box-shadow: 0 -6px 20px rgba(61, 36, 12, 0.05), 0 -2px 6px rgba(61, 36, 12, 0.03);
}

/* Декоративный разделитель перед футером */
.footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 500px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--brand-300) 30%,
    transparent 47%,
    transparent 53%,
    var(--brand-300) 70%,
    transparent 100%
  );
}

.footer::after {
  content: '◆';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: var(--brand-300);
  background: var(--bg);
  padding: 0 12px;
  text-shadow: 0 2px 8px rgba(214, 148, 86, 0.3);
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 24px;
  align-items: start;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links-column {
  justify-self: end;
  text-align: right;
  padding-top: 14px;
}

.footer .logo {
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.footer-disclaimer {
  margin: 0;
  font-size: 12px;
  max-width: 520px;
}

.footer-disclaimer-center {
  margin: 14px auto 0;
  text-align: center;
  max-width: 640px;
}

.footer-copy {
  margin: 8px auto 0;
  text-align: center;
  font-size: 12px;
  width: 100%;
}

.footer-links a:hover {
  color: var(--accent-dark);
}

/* ========================================
   Мобильная адаптация
   ======================================== */

/* Планшеты и маленькие ноутбуки */
@media (max-width: 860px) {
  .container {
    width: 92%;
  }
  
  .nav {
    display: flex;
  }
  
  .nav .cta {
    padding: 10px 24px;
    font-size: 18px;
  }
  
  .hero {
    padding-top: 60px;
  }
  
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content {
    order: 2;
  }
  
  .hero-media {
    order: 1;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .subtitle {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .price-row {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .meta {
    justify-content: center;
  }
  
  .results {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .results-media {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .trust {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .trust-media {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .lead {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .lead-text {
    text-align: center;
  }
  
  .lead-text .checklist {
    text-align: left;
    max-width: 400px;
    margin: 24px auto;
  }
  
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .footer-links-column {
    justify-self: start;
    text-align: left;
  }
  
  .footer-links {
    gap: 12px;
  }
  
  .section {
    padding: 70px 0;
  }
  
  .section-divider {
    padding-top: 80px !important;
  }
}

/* Мобильные устройства */
@media (max-width: 600px) {
  .container {
    width: 94%;
  }
  
  .site-header {
    position: sticky;
    top: 0;
  }
  
  .header-inner {
    padding: 14px 0;
  }
  
  .logo {
    font-size: 18px;
  }
  
  .nav {
    display: flex;
  }
  
  .nav .cta {
    min-width: auto;
    padding: 8px 16px;
    font-size: 14px;
  }
  
  .nav .cta span:nth-child(2) {
    display: none;
  }
  
  .hero {
    padding: 48px 0 40px;
  }
  
  .hero-inner {
    gap: 32px;
  }
  
  .hero-content h1 {
    font-size: 28px;
    margin: 12px 0 16px;
  }
  
  .subtitle {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .badge {
    font-size: 10px;
    padding: 6px 12px;
  }
  
  .price-row {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin: 20px 0 24px;
  }
  
  .price {
    font-size: 28px;
  }
  
  .cta {
    padding: 12px 28px;
    font-size: 18px;
  }
  
  .cta span:nth-child(2) {
    width: 16px;
    margin-left: 16px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 13px;
  }
  
  .btn-ghost {
    padding: 10px 20px;
  }
  
  .hero-actions {
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .meta {
    font-size: 11px;
    gap: 10px;
  }
  
  .hero-media img,
  .results-media img,
  .trust-media img {
    border-radius: var(--radius);
    aspect-ratio: 1/1;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .section-divider {
    padding-top: 60px !important;
  }
  
  .section-divider::before {
    top: 30px;
    width: 80%;
  }
  
  .section-divider::after {
    top: 18px;
    font-size: 12px;
  }
  
  h2 {
    font-size: 24px;
    margin-bottom: 24px;
  }
  
  .benefits {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .benefit {
    padding: 20px;
  }
  
  .benefit h3 {
    font-size: 17px;
    margin-bottom: 8px;
  }
  
  .benefit p {
    font-size: 14px;
  }
  
  .checklist {
    margin: 20px 0;
  }
  
  .checklist li {
    font-size: 14px;
    padding-left: 28px;
    margin-bottom: 12px;
  }
  
  .checklist li::before {
    width: 20px;
    height: 20px;
    font-size: 11px;
  }
  
  .disclaimer {
    font-size: 12px;
    padding: 14px;
  }
  
  .pill-list {
    gap: 8px;
    margin-top: 20px;
  }
  
  .pill-list span {
    padding: 8px 14px;
    font-size: 12px;
  }
  
  .lead-form {
    padding: 20px;
    gap: 16px;
  }
  
  .lead-form label {
    font-size: 13px;
    gap: 6px;
  }
  
  .lead-form input {
    padding: 12px 14px;
    font-size: 14px;
  }
  
  .form-note {
    font-size: 11px;
  }
  
  .faq {
    gap: 12px;
  }
  
  details {
    padding: 16px 18px;
  }
  
  summary {
    font-size: 14px;
  }
  
  details p {
    font-size: 14px;
    margin-top: 12px;
  }
  
  .footer {
    padding: 36px 0 24px;
  }
  
  .footer .logo {
    font-size: 18px;
  }
  
  .footer-inner {
    gap: 20px;
  }
  
  .footer-links {
    font-size: 12px;
    gap: 10px;
  }
  
  .footer-disclaimer {
    font-size: 11px;
  }
  
  .footer-copy {
    font-size: 11px;
  }
  
  .thank-you-icon {
    width: 96px;
    height: 96px;
  }
  
  /* Карточки CTA */
  .cards-cta {
    margin-top: 40px;
  }
  
  .cards-cta .cta {
    padding: 12px 24px;
    font-size: 16px;
  }
  
  .cards-cta-note {
    font-size: 11px;
    padding: 0 16px;
  }
}

/* Маленькие мобильные устройства */
@media (max-width: 420px) {
  .container {
    width: 96%;
  }
  
  .hero-content h1 {
    font-size: 24px;
  }
  
  .subtitle {
    font-size: 13px;
  }
  
  .price {
    font-size: 26px;
  }
  
  .cta {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 16px;
  }
  
  .btn {
    width: 100%;
  }
  
  .btn-ghost {
    width: 100%;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .benefit h3 {
    font-size: 16px;
  }
  
  .pill-list span {
    font-size: 11px;
    padding: 6px 12px;
  }
  
  .lead-form {
    padding: 16px;
  }
  
  .lead-form input {
    padding: 10px 12px;
  }
  
  summary {
    font-size: 13px;
  }
  
  .footer-links {
    font-size: 11px;
  }
}

/* Очень маленькие экраны */
@media (max-width: 360px) {
  .hero-content h1 {
    font-size: 22px;
  }
  
  .cta {
    font-size: 14px;
    padding: 10px 16px;
  }
  
  .price {
    font-size: 24px;
  }
  
  .badge {
    font-size: 9px;
    padding: 5px 10px;
  }
  
  h2 {
    font-size: 20px;
  }
  
  .benefit {
    padding: 16px;
  }
  
  .benefit h3 {
    font-size: 15px;
  }
  
  .benefit p {
    font-size: 13px;
  }
}
