/* Root Variables */
:root {
  --primary-color: #81b71a;
  --secondary-color: #4ebbf7;
  --tertiary-color: #6d6d6d;
  --body-font: Arial, sans-serif;
  --title-font: Helvetica, Arial, sans-serif;
}

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Styles */
body {
  font-family: var(--body-font);
  line-height: 1.6;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  font-size: 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font);
}

p,
span,
a,
li,
button {
  font-family: var(--body-font);
}

.hero-3 {
  background: white;
  padding: 80px 40px;
  margin-bottom: 50px;
  text-align: center;
  border: 2px solid var(--primary-color);
  border-radius: 8px;
}

.hero-3 .attention-tag {
  background: var(--primary-color);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 18px;
  display: inline-block;
  margin-bottom: 30px;
}

.hero-3 h1 {
  font-size: 42px;
  color: var(--tertiary-color);
  margin-bottom: 40px;
  line-height: 1.3;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-3 .highlight-underline {
  border-bottom: 4px solid var(--secondary-color);
  color: var(--secondary-color);
}

.hero-3 .proof-points {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
}

.hero-3 .proof-item {
  text-align: center;
}

.hero-3 .proof-number {
  font-size: 48px;
  color: var(--primary-color);
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.hero-3 .proof-item p {
  font-size: 18px;
  color: var(--tertiary-color);
}

@media (max-width: 768px) {
  .hero-3 h1 {
    font-size: 32px;
  }

  .hero-3 .proof-points {
    flex-direction: column;
    gap: 30px;
  }
}
