.hero-section {
  position: relative;
  width: 100%;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: white;
  /*padding: 20px;*/
  width:100%;
   /*background: rgba(0, 0, 0, 0.5); Optional for text visibility */
  border-radius: 10px; /* Optional for style */
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 
    -1px -1px 0 black, /* Top-left */
    1px -1px 0 black,  /* Top-right */
    -1px 1px 0 black,  /* Bottom-left */
    1px 1px 0 black;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color:white!important;
}

.cta-button {
  text-decoration: none;
  padding: 10px 20px;
  background-color: #28a745;
  color: white;
  font-size: 1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #218838;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-section{
      height: 35vh;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .cta-button {
    font-size: 0.9rem;
  }
}
