body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
}

.main-section,
.section {
  min-height: 100vh;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section {
  align-items: center;
}

#Card-Section {
  /* background-color: #f0f8ff; */
}

#hall-of-fame-section {
  /* background-color: #4682b4;
  color: white; */
}

#Footer-section {
  min-height: auto; /* Allow footer to take its natural height */
  padding-bottom: 20px; /* Add some padding at the bottom */
}

/* Ensure the last section before the footer has some bottom padding */
.section:nth-last-child(2) {
  padding-bottom: 50px;
}

/* Hero Section Styling */
/* #Hero-section {
  background: url("/path/to/hero-background.jpg") no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

#Hero-section h1 {
  font-size: 3rem;
  margin: 0;
}

#Hero-section p {
  font-size: 1.2rem;
  margin-top: 10px;
} */

/* #Hero-section button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 20px;
} */
/* Card Section Styling */
#Card-Section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  /* padding: 50px 20px; */
  /* background-color: #f4f4f4; */
}

/* .card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  width: calc(33.333% - 20px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 100%;
  height: auto;
}

.card-body {
  padding: 20px;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.card-text {
  font-size: 1rem;
  color: #555;
} */
/* Hall of Fame Section Styling */
#hall-of-fame-section {
  /* background-color: #e0f7fa; */
  /* padding: 50px 20px; */
  /* text-align: center; */
}

.hall-item {
  display: inline-block;
  margin: 20px;
  background: #ffffff;
  border: 2px solid #00796b;
  border-radius: 10px;
  padding: 20px;
  width: 200px;
}

.hall-item img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.hall-item h3 {
  font-size: 1.2rem;
  margin: 10px 0;
}

.hall-item p {
  font-size: 0.9rem;
  color: #333;
}

.faq-answer.active {
  display: block;
  max-height: 1000px;
  opacity: 1;
}
/* Footer Section Styling */
#Footer-section {
  /* background-color: #263238; */
  color: #cfd8dc;
  padding: 20px;
  text-align: center;
}

#Footer-section p {
  font-size: 0.9rem;
  margin: 0;
}

#Footer-section a {
  /* color: #ffab00; */
  text-decoration: none;
  margin: 0 5px;
}

#Footer-section a:hover {
  text-decoration: underline;
}
