body {
  background: linear-gradient(to right, #f9d423, #ff4e50);
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

.container {max-width: 700px;
  margin: 30px auto;
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  text-align: center;
}

.profile-pic {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 4px solid #ff4e50;
  object-fit: cover;
  margin-bottom: 15px;
}

h1 {
  margin: 10px 0 5px;
}

.subtitle {
  color: #555;
  font-size: 16px;
  margin-bottom: 20px;
}

.section {
  margin-top: 30px;
  text-align: center;
}
h2 .pdf-button {
  display: inline-block;
  padding: 10px 18px;
  background: #28a745;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}
.pdf-button:hover {
  background: #218838;
}
h3 {
  color: #ff4e50;
  margin-bottom: 10px;
}

.pdf-button, .insta-button {
  display: inline-block;
  padding: 10px 20px;
  background: #ff4e50;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s;
}

.pdf-button:hover, .insta-button:hover {
  background: #e84343;
}
```


