/* Hero Section Padding */
.lsam-hero {
  padding: 40px 0; /* space above and below all content in hero */
}

/* Hero Buttons - Red Style */
.btn-hero-red {
  background-color: #c00;      /* Bold red */
  color: #fff;                 /* White text */
  border: 2px solid #c00;
  padding: 8px 16px;           /* slightly smaller */
  font-weight: 600;
  font-size: 13px;             /* smaller font */
  text-transform: uppercase;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-hero-red:hover,
.btn-hero-red:focus {
  background-color: #fff;      /* White on hover */
  color: #c00;                 /* Red text on hover */
  border-color: #c00;
  text-decoration: none;
}

.btn-hero-sm {
  padding: 6px 14px;           /* smaller variant for compact buttons */
  font-size: 12px;
}

.hero-buttons a + a {
  margin-left: 10px;           /* space between buttons on desktop */
}

@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons a + a {
    margin-left: 0;
    margin-top: 10px;          /* space between stacked buttons on mobile */
  }
}
