:root {
  --primary-color: #65737e;
  --primary-hover: #4f5b66;
  --text-color: #100e09;
  --text-secondary: #333333;
}

/* Body text */
body {
  font-size: 16px !important;
  line-height: 1.6 !important;
  color: var(--text-color) !important;
}

/* Headings */
h1 {
  font-size: 36px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  margin-bottom: 0.5em !important;
}
h2 {
  font-size: 28px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  margin-bottom: 0.5em !important;
}
h3 {
  font-size: 22px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  margin-bottom: 0.5em !important;
}

/* Paragraphs */
p {
  font-size: 16px !important;
  line-height: 1.6 !important;
  margin-bottom: 1em !important;
}

/* Links and buttons */
a,
button {
  font-size: 16px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  cursor: pointer !important;
}

/* Footer text */
footer,
footer p,
footer small {
  font-size: 14px !important;
  line-height: 1.4 !important;
}

/* Captions / Notes */
.caption,
.note {
  font-size: 12px !important;
  font-style: italic !important;
}

@media (max-width: 768px) {
  body {
    font-size: 14px !important;
  }
  h1 {
    font-size: 28px !important;
  }
  h2 {
    font-size: 22px !important;
  }
  h3 {
    font-size: 20px !important;
  }
  a,
  button {
    font-size: 14px !important;
  }
  footer,
  footer p,
  footer small {
    font-size: 12px !important;
  }
}

/* Mobile hover fix + small screens */
@media (max-width: 768px) {
  /* Prevent hover expansion on smaller screens */
  .feature-circle,
  .feature-circle:hover {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    box-shadow: none !important;
    transition: none !important;
  }

  .feature-circle .feature-text {
    opacity: 0 !important;
    max-height: 0 !important;
    margin-top: 0 !important;
    transition: none !important;
  }
}

/* Extra small screens: 425px */
@media (max-width: 425px) {
  .feature-group {
    bottom: 60px !important; /* push down */
  }

  .feature-circle,
  .feature-circle:hover {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    box-shadow: none !important;
    transition: none !important;
  }

  .feature-circle a {
    font-size: 0.7rem !important;
  }

  .feature-circle i {
    font-size: 1.2rem !important;
  }

  .feature-circle .feature-text {
    opacity: 0 !important;
    max-height: 0 !important;
    margin-top: 0 !important;
    transition: none !important;
  }
}