/* All BMPs style */
#all-bmps-1 {
  text-align: center;
  margin: 20px 0;
}

#all-bmps-1 {
  background-color: white;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#all-bmps-1 h1 {
  text-align: center;
  margin-bottom: 20px;
}

.all-bmps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.all-bmps-box {
  width: calc(25% - 20px);
  min-width: 200px;
  background-color: #f8f8f8;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.all-bmps-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.all-bmps-box img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.all-bmps-box h3 {
  margin: 10px 0;
}

.all-bmps-box p {
  font-size: 14px;
  color: #666;
}

/* Greeting Section styles */
#greeting-section {
  background-color: #f9f9f9;
  padding: 5px;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.greeting-content {
  max-width: 800px;
  margin: 0 auto;
}

#greeting-section h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #333;
}

#greeting-section p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #555;
}

.greeting-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #555;
  color: white;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
}

.greeting-button:hover {
  background-color: #333;
}
