/* Hero styles */
.hero-container {
  position: relative;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
}

.hero-content h2{
  color: black;
  font-size: 30px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  font-family: 'Roboto', sans-serif;
}

/* Custom button styles */
.btn-primary{
    font-family: 'Roboto', sans-serif;
    background-color: #28a745;
    border-color: #28a745;
    border-radius: 40px;
    font-size: 20px;
    padding: 15px 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #218838 !important;
    border-color: #218838 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* system overview styles */
.index_overview {
    margin-top: 50px;
    line-height: 2rem;
    font-size: 16px;
}

@media (max-width: 768px) {
  .hero-content {
    position: static;
    transform: none;
  }
}
