/* 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-1 {
  background: var(--primary-color);
  padding: 50px 40px;
  margin-bottom: 50px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-1 .hero-content {
  max-width: 95%;
  margin: 0 auto;
}

.hero-1 h1 {
  color: white;
  font-size: 36px;
  line-height: 1.5;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.hero-1 .highlight-text {
  color: white;
  font-weight: bold;
  font-size: 36px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.5);
}

.hero-1 .urgent-note {
  color: white;
  font-weight: bold;
  background: rgba(255, 0, 0, 0.15);
  padding: 15px 25px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 15px;
  font-size: 24px;
}

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

  .hero-1 .urgent-note {
    font-size: 20px;
  }
}
