:root {
  --bg: #f8f5f1;
  --card: rgba(255, 255, 255, 0.88);
  --text: #1f1a17;
  --muted: #6e6258;
  --accent: #c8a46a;
  --border: rgba(200, 164, 106, 0.35);
  --shadow: 0 20px 60px rgba(31, 26, 23, 0.10);
}

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

body {
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 15px;
}

.card {
  width: 100%;
  max-width: 430px;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 28px;
  box-shadow: var(--shadow);
  text-align: center;
  padding: 36px 24px;
}

.photo {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 22px;
  display: block;
  border: 4px solid #fff;
}

h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.role {
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: bold;
  margin-bottom: 14px;
}

.city {
  font-size: 15px;
  margin-bottom: 16px;
}

.description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.divider {
  width: 70px;
  height: 1px;
  background: var(--accent);
  margin: 24px auto;
}

h2 {
  font-size: 22px;
  margin-bottom: 16px;
}

.services {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--muted);
}

.buttons {
  display: grid;
  gap: 12px;
}

.buttons a {
  text-decoration: none;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255,255,255,0.7);
  font-weight: 600;
  padding: 0 18px;
  transition: 0.25s ease;
}

.buttons a:hover {
  background: var(--accent);
  color: white;
}