* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Georgia, serif; background: #FFFBF4; color: #1E1814; }

nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 40px; background: #FFFBF4;
  border-bottom: 1px solid rgba(30,24,20,0.08);
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-size: 26px; font-weight: bold; font-style: italic; color: #E4568B; text-decoration: none; }
.nav-logo img { width: 36px; height: 36px; border-radius: 9px; object-fit: cover; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-family: 'Helvetica Neue', sans-serif; font-size: 14px; color: rgba(30,24,20,0.6); text-decoration: none; }
.nav-links a:hover { color: #E4568B; }

.content { max-width: 700px; margin: 60px auto; padding: 0 24px 80px; }

h1 { font-size: 36px; font-style: italic; margin-bottom: 8px; }
.subtitle { font-family: 'Helvetica Neue', sans-serif; font-size: 15px; color: rgba(30,24,20,0.6); margin-bottom: 40px; }

.card {
  background: white; border-radius: 16px; padding: 28px 32px;
  border: 1px solid rgba(30,24,20,0.08);
  box-shadow: 0 2px 10px rgba(30,24,20,0.05);
  margin-bottom: 24px;
}
.card h2 { font-size: 20px; font-style: italic; margin-bottom: 12px; }

.steps { list-style: none; counter-reset: step; }
.steps li {
  counter-increment: step;
  font-family: 'Helvetica Neue', sans-serif; font-size: 14px;
  color: rgba(30,24,20,0.72); line-height: 1.65;
  padding: 9px 0 9px 32px; position: relative;
  border-bottom: 1px solid rgba(30,24,20,0.05);
}
.steps li:last-child { border-bottom: none; }
.steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 11px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #E4568B; color: white;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.steps li strong { color: #1E1814; }

.note {
  margin-top: 16px; background: #FDF0F5; border-left: 3px solid #E4568B;
  border-radius: 0 8px 8px 0; padding: 12px 16px;
  font-family: 'Helvetica Neue', sans-serif; font-size: 13px;
  color: rgba(30,24,20,0.65); line-height: 1.6;
}

.data-list { list-style: none; margin-top: 12px; }
.data-list li {
  font-family: 'Helvetica Neue', sans-serif; font-size: 14px;
  color: rgba(30,24,20,0.72); line-height: 1.6;
  padding: 6px 0 6px 18px; position: relative;
  border-bottom: 1px solid rgba(30,24,20,0.05);
}
.data-list li:last-child { border-bottom: none; }
.data-list li::before { content: "•"; position: absolute; left: 0; color: #E4568B; }

.email-btn {
  display: inline-block; background: #E4568B; color: white;
  border-radius: 10px; padding: 12px 28px; margin-top: 16px;
  font-family: 'Helvetica Neue', sans-serif; font-size: 14px; font-weight: 700;
  text-decoration: none;
}
.email-btn:hover { background: #C03070; }

p.body-text {
  font-family: 'Helvetica Neue', sans-serif; font-size: 14px;
  color: rgba(30,24,20,0.72); line-height: 1.7; margin-top: 8px;
}
