* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  height: 100vh;
  background: linear-gradient(135deg, #ffd6e0, #ffeef3);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* soft background blobs */
.bg-blur::before,
.bg-blur::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: #ffc0cb;
  border-radius: 50%;
  filter: blur(120px);
  animation: float 8s infinite alternate;
}

.bg-blur::after {
  right: 10%;
  top: 20%;
}

@keyframes float {
  from { transform: translateY(0); }
  to { transform: translateY(40px); }
}

.card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  padding: 40px;
  width: 90%;
  max-width: 520px;
  text-align: left;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* typography */
h1 {
  font-size: 32px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 18px;
}

.about {
  font-size: 14px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* section */
.section h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
}

.section ul {
  list-style: none;
  padding-left: 0;
}

.section li {
  font-size: 14px;
  color: #444;
  margin-bottom: 6px;
  position: relative;
  padding-left: 18px;
}

.section li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ff8fab;
}

/* email button */
.email {
  display: inline-block;
  margin-top: 25px;
  font-size: 14px;
  color: #ff5c8a;
  text-decoration: none;
  font-weight: 500;
}

.email:hover {
  text-decoration: underline;
}

/* mobile */
@media (max-width: 600px) {
  .card {
    padding: 25px;
  }

  h1 {
    font-size: 24px;
  }
}