body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: #f8f2eb;
  background: linear-gradient(180deg, #43124d 0%, #2a103e 40%, #120b23 100%);
  padding: 40px 20px;
}

/* HEADINGS */
h1, h2, h3 {
  font-family: "Playfair Display", serif;
  color: #f8f2eb;
}

/* INTRO */
.intro {
  max-width: 800px;
  color: #e5d8f6;
  margin-bottom: 30px;
}

/* SECTIONS */
.section {
  background: rgba(58, 47, 92, 0.65);
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* TOOL NUMBER */
.tool-number {
  color: #cfc2df;
  font-size: 14px;
  margin-bottom: 10px;
}

/* TEXTAREAS */
textarea {
  width: 100%;
  margin-top: 8px;
  margin-bottom: 18px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.25);
  color: white;
  font-family: "Inter", sans-serif;
  resize: vertical;
}

textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

/* TAGS */
.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 6px;
  font-size: 12px;
  color: #e5d8f6;
}

/* THEN vs NOW */
.then-now {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 280px;
  background: rgba(58, 47, 92, 0.65);
  padding: 20px;
  border-radius: 20px;
}