.body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-color: #e0e0e0 !important;
}
/* Banner Styles */
.banner {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-text {
  position: absolute;
  width: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.295);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.banner-text h1 {
  font-size: 1.5rem;
  margin: 0;
  color: white;
}

/* Main Content Styles */
.content {
  padding: 20px;
  max-width: 800px;
  margin: auto;
}

h2,
h2.any-class {
  color: #3a3a3a !important;
  margin-bottom: 10px !important;
  font-weight: 700 !important;
  font-size: 25px !important;
}

ul {
  list-style: disc;
  margin-left: 20px;
}

strong {
  color: #ff9100;
  font-weight: normal;
}

/* Footer Styles */
.footer {
  text-align: center;
  padding: 10px;
  background: #f4f4f4;
  color: #555;
}
@media (max-width: 768px) {
  .banner-text {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.295);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
  }
}
