* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #f5f1eb;
  min-height: 100vh;
  color: #4a4a4a;
  padding: 40px 20px;
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

header {
  padding: 50px 40px;
  background-color: #d4c4b0;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

header img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #b8a490;
  flex-shrink: 0;
}

.header-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 8px;
}

.header-text p {
  font-size: 1.2rem;
  color: #4b3f31;
  font-weight: 400;
}

.content {
  padding: 35px 40px;
}

section {
  margin-bottom: 30px;
}

section:last-child {
  margin-bottom: 0;
}

section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #5d4e37;
  margin-bottom: 15px;
}

section p {
  font-size: 1rem;
  color: #6b6b6b;
  line-height: 1.7;
  margin-bottom: 15px;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  font-size: 1rem;
  color: #5d5d5d;
  margin: 12px 0;
  padding: 18px 20px;
  background-color: #f9f7f4;
  border-radius: 8px;
}

ul li strong {
  font-weight: 600;
  color: #5d4e37;
}

.contact {
  background-color: #b8a490;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 30px;
}

.contact h2 {
  color: white;
  text-align: center;
  margin-bottom: 20px;
}

.contact-info {
  margin: 20px 0;
}

.contact-info p {
  color: white;
  margin: 0;
  font-size: 1.1rem;
}

.contact a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-weight: 500;
}

.contact-links {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.contact-links a {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 20px;
  color: #5d4e37;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
