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

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f5f1ea;
  color: #3e3e3e;
}

.container {
  max-width: 750px;
  margin: 80px auto;
  padding: 0 20px;
}

header {
  margin-bottom: 60px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #5c4b3c;
}

.subtitle {
  color: #8c7b6b;
  font-size: 14px;
  letter-spacing: 1px;
}

.card {
  margin-bottom: 45px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e3dcd2;
}

.card h2 {
  font-size: 18px;
  font-weight: 500;
  color: #7a6753;
  margin-bottom: 12px;
}

.card p {
  font-size: 15px;
  line-height: 1.8;
  color: #4a4a4a;
}

button {
  margin-top: 15px;
  background-color: #7a6753;
  color: white;
  border: none;
  padding: 8px 18px;
  font-size: 14px;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  background-color: #5c4b3c;
}

#msg {
  margin-top: 12px;
  font-size: 14px;
  color: #5c4b3c;
}

footer {
  margin-top: 70px;
  font-size: 12px;
  color: #9b8f83;
}
