/* Bootstrap CSS (Optional: Download this file if you want 100% local) 
   If you keep Bootstrap on CDN, remove the @import line below and keep the <link> in HTML */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');

/* Your Custom Styles */
.hero {
  background-size: cover;
  color: black;
  padding: 60px 20px 20px 20px;
  text-align: center;
}

.hero img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto; /* Centers the image if it has a max-width */
}

.section {
  padding: 20px 20px;
}

.card {
  border: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.footer {
  background: #222;
  color: white;
  padding: 30px 20px;
  text-align: center;
}