* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff8f3;
  color: #000000; /* Set all default text to black */
  line-height: 1.6;
}

header {
  background: linear-gradient(to right, #a1a1c7, #a1a1c7);
  padding: 3rem 1rem;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-bottom: 4px solid #a1a1c7;
  position: relative;
  z-index: 1;
}

header h1 {
  font-size: 3rem;
  color: #000000; /* Changed from pink */
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.2rem;
  color: #000000; /* Changed from #7a5c61 */
}

.container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.card {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07);
  margin-bottom: 2rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 1rem;
  position: relative;
  z-index: 1;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 1.5rem;
  border: 4px solid #ffd6e0;
  flex-shrink: 0;
}

.info h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #000000; /* Changed from #e75480 */
}

.info p {
  font-size: 1rem;
  color: #000000; /* Changed from #4f4f4f */
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #a1a1c7;
  font-size: 0.9rem;
  color: #000000; /* Changed from #777 */
  border-top: 2px dashed #a1a1c7;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

/* Responsive cards */
@media (max-width: 600px) {
  .card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
  }

  .card img {
    margin-bottom: 1rem;
    margin-right: 0;
  }
}

/* Sparkle Background */
.sparkle-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.sparkle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, #fff8fb 20%, #ffb8d1 60%, transparent 100%);
  border-radius: 50%;
  animation: floatSparkle 10s linear infinite;
  opacity: 0.8;
}

.sparkle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-duration: 12s;
  animation-delay: 0s;
}

.sparkle:nth-child(2) {
  top: 50%;
  left: 30%;
  animation-duration: 15s;
  animation-delay: 2s;
}

.sparkle:nth-child(3) {
  top: 80%;
  left: 60%;
  animation-duration: 10s;
  animation-delay: 1s;
}

.sparkle:nth-child(4) {
  top: 40%;
  left: 80%;
  animation-duration: 18s;
  animation-delay: 3s;
}

.sparkle:nth-child(5) {
  top: 10%;
  left: 50%;
  animation-duration: 14s;
  animation-delay: 5s;
}

@keyframes floatSparkle {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.9;
  }
  50% {
    opacity: 0.6;
    transform: translateY(-30px) scale(1.2);
  }
  100% {
    transform: translateY(-60px) scale(0.8);
    opacity: 0;
  }
}
