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

body {
  font-family: "Didot", "Big Caslon", "Hoefler Text", serif;
  background: #ffffff;
  color: #333;
  min-height: 100vh;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

header {
  text-align: center;
  margin-bottom: 2rem;
}

header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #333;
}

header p {
  margin-top: 0.5rem;
  color: #888;
  font-size: 1.1rem;
}

.button-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: #F2C4D5;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-link:hover {
  background: #E0A8BE;
  transform: translateY(-2px);
}

.page-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.back-link {
  color: #F2C4D5;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.back-link:hover {
  color: #E0A8BE;
}

.page-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}

.content {
  line-height: 1.7;
  font-size: 1.05rem;
  color: #333;
}

.content p {
  margin-bottom: 1rem;
}

.content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.content li {
  margin-bottom: 0.5rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
}

label {
  font-size: 0.9rem;
  color: #666;
}

input, textarea {
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  font-size: 1rem;
  font-family: inherit;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #F2C4D5;
}

button[type="submit"] {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  background: #F2C4D5;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

button[type="submit"]:hover {
  background: #E0A8BE;
}

@media (max-width: 600px) {
  header h1 {
    font-size: 1.8rem;
  }
}


