/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #222, #555);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.page-background {
  padding: 30px;
}

.about-card {
  position: relative;
  max-width: 500px;
}

.paper {
  background: white;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.paper h1 {
  font-family: "Arial Black", sans-serif;
  font-size: 2rem;
  margin-bottom: 25px;
  color: #222;
}

.photo {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info .name {
  font-weight: bold;
  font-size: 1.2rem;
}

.info .location {
  font-style: italic;
  color: #666;
  margin-bottom: 15px;
}

.description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
}

.cta {
  font-family: "Brush Script MT", cursive;
  font-size: 1.3rem;
  margin-top: 20px;
  color: #6e5494;
}

/* Clip and Binder */
.clip {
  position: absolute;
  top: -10px;
  left: 20px;
  width: 25px;
  height: 25px;
  background: #f1c40f;
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
}

.binder {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  background: #333;
  border-radius: 4px;
  transform: rotate(15deg);
}

/* Responsive */
@media (max-width: 500px) {
  .paper {
    padding: 30px 20px;
  }

  .photo {
    width: 100px;
    height: 100px;
  }

  .paper h1 {
    font-size: 1.7rem;
  }
}
