@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap');

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

body {
  background-color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100svh;
  padding: 20px;
}

.card {
  background: #333;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 500px;
  color: #f0f0f0;
}

.header {
  background: #444;
  padding: 30px 25px 25px;
  text-align: center;
  position: relative;
  padding-top: 90px;
  border-radius: 16px 16px 0 0;
}

.profile-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #333;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}

.header h1 {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: white;
}

.header p {
  font-weight: 300;
  opacity: 0.8;
  font-size: 0.9rem;
  color: #ccc;
}

.content {
  padding: 25px;
  padding-top: 20px;
}

.info-item {
  margin-bottom: 20px;
}

.info-label {
  font-size: 0.8rem;
  color: #aaa;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  font-size: 1rem;
  color: #f0f0f0;
  font-weight: 500;
}

.services {
  background-color: #3a3a3a;
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
}

.services-title {
  color: #7e57c2;
  font-weight: 600;
  margin-bottom: 5px;
  text-align: center;
  font-size: 1.1rem;
}

.services-description {
  color: #bbb;
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 15px;
  font-style: italic;
}

.service {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #555;
}

.service:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.service-name {
  color: #ddd;
  font-weight: 500;
}

.service-price {
  color: #7e57c2;
  font-weight: 600;
}

.contact-button {
  display: block;
  background: linear-gradient(135deg, #7e57c2 0%, #5e35b1 100%);
  color: white;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 25px;
  transition: opacity 0.3s ease;
}

.contact-button:hover {
  opacity: 0.9;
}
