* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #000; /* Black background */
  color: #fff; /* White text */
}

header {
  background: #2c3e50;
  color: white;
  padding: 20px;
  text-align: center;
}

main {
  padding: 20px;
}

footer {
  background: #000; /* Black background */
  color: white;
  text-align: center;
  padding: 10px;
  position: fixed;
  bottom: 0;
  width: 100%;
}

.card {
  background-color: #333; /* Dark card background */
  color: #fff; /* White text on cards */
  border: 1px solid #555; /* Subtle border */
}

.card-body {
  color: #fff;
}

.hero-section {
  background-image: url("../images/hero_section/hero_image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section {
    min-height: 40vh;
    height: auto;
    padding: 50px 20px; /* Adjusted padding for mobile */
    font-size: 2rem; /* Smaller font on mobile */
  }

  .hero-section .lead {
    font-size: 1.2rem;
  }
}
