body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0f0f0f;
  color: #eee;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  padding: 28px 36px;
  border-radius: 10px;
  text-align: center;
}

.overlay h1 {
  font-size: 40px;
  margin: 2;
  color: #c70039;
}

.overlay p {
  font-style: italic;
  font-size: 18px;
  color: #e6e6e6;
  margin-top: 12px;
}

.content-wrapper {
  padding: 35px 20px;
  max-width: 1100px;
  margin: auto;
}

.profile {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;
  margin-bottom: 45px;
}

.profile img {
  width: 300px;
  border-radius: 14px;
}

.cards {
  display: grid;
}

.card {
  background-color: #1e1e1e;
  padding: 18px;
  border-radius: 10px;
  border-left: 5px solid #ff003c;
}

.card h3 {
  color: #ff4b69;
  margin-bottom: 8px;
}