body {
  background-color: #f0f0f0;
  font-family: Arial, sans-serif;
  margin: 0;
}

.hero {
  background-color: #4f46e5;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

.hero h1 {
  margin: 0;
  font-family: 'Satisy', cursive;
  font-size: 5rem;
}

.hero p small {
  font-size: 1rem;
  font-style: italic;
  opacity: 0.8;
  display: block;
  margin-top: 0.5rem;
  font-size: 1.3rem;
}

section {
  margin-bottom: 4rem;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }
}

 
.info-cards {
  display: flex;
  justify-content: center;
  gap: 5.5rem;
  flex-wrap: wrap;
  font-family: 'Pacifico', cursive;
  margin-bottom: 4rem;
  padding: 0 1rem;
  font-style: italic;
}

.flip-card {
  background-color: transparent;
  width: 200px;
  height: 250px;
  cursor: pointer;
  perspective: 1000px;
  transition: transform 0.3s ease-in-out;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  text-align: center;
  color: white;
}

.flip-card-front {
  background-color: #4f46e5;
  font-size: 2rem;
  font-weight: bold;
}

.flip-card-back {
  background-color: white;
  color: #333;
  transform: rotateY(180deg);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.flip-card-back h2 {
  color: #4f46e5;
  margin-bottom: 0.5rem;
}

.flip-card-back p, .flip-card-back ul {
  font-size: 1rem;
  line-height: 1.5;
}

.flip-card-back ul {
  list-style-type: none;
  padding: 0;
}

.flip-card-back ul li {
  margin: 0.3rem 0;
}

/* Flip effect */
.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}
footer {
  background-color: #4f46e5;  /* same as your hero section */
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 1rem;
  font-family: 'Arial', sans-serif;
  margin-top: 2rem;
  border-top: 4px solid #3b37c9; /* subtle top border for separation */
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

footer a {
  color: #ffdd57; /* standout color */
  text-decoration: none;
  margin: 0 0.5rem;
  font-weight: bold;
}

footer a:hover {
  text-decoration: underline;
  color: #fff;
}

footer p {
  margin: 0.5rem 0;
}
