body {
  color: #e0e0e0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.8;
  padding: 0;
}

.main-content {
  max-width: 700px;
  margin: 3rem auto;
  padding: 0 1.2rem;
}

h1 {
  font-family: "Prata", serif;
  text-align: center;
  font-size: 2.4rem;
  margin: 2rem 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: baseline;
  width: 100%;
  height: 4rem;
  text-shadow: 
  0 2px 4px rgba(219, 218, 183, 0.3),
  0 4px 8px rgba(219, 218, 183, 0.2);
  filter: drop-shadow(0 0 20px rgba(219, 218, 183, 0.2));
}

h1 span {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

h1 span:nth-child(1) { transform: translateY(-15px) rotate(-8deg); }
h1 span:nth-child(2) { transform: translateY(-12px) rotate(-6deg); }
h1 span:nth-child(3) { transform: translateY(-8px) rotate(-4deg); }
h1 span:nth-child(4) { transform: translateY(-5px) rotate(-2deg); }
h1 span:nth-child(5) { transform: translateY(-3px) rotate(-1deg); }
h1 span:nth-child(6) { transform: translateY(0px) rotate(0deg); }
h1 span:nth-child(7) { transform: translateY(0px) rotate(0deg); }
h1 span:nth-child(8) { transform: translateY(-3px) rotate(1deg); }
h1 span:nth-child(9) { transform: translateY(-5px) rotate(2deg); }
h1 span:nth-child(10) { transform: translateY(-8px) rotate(4deg); }
h1 span:nth-child(11) { transform: translateY(-12px) rotate(6deg); }
h1 span:nth-child(12) { transform: translateY(-15px) rotate(8deg); }
h1 span:nth-child(13) { transform: translateY(-18px) rotate(10deg); }
h1 span:nth-child(14) { transform: translateY(-20px) rotate(12deg); }
h1 span:nth-child(15) { transform: translateY(-22px) rotate(14deg); }
h1 span:nth-child(n+16) { transform: translateY(-25px) rotate(16deg); }
h1:hover span:nth-child(1) { transform: translateY(-35px) rotate(-15deg); }
h1:hover span:nth-child(2) { transform: translateY(-30px) rotate(-12deg); }
h1:hover span:nth-child(3) { transform: translateY(-22px) rotate(-8deg); }
h1:hover span:nth-child(4) { transform: translateY(-15px) rotate(-5deg); }
h1:hover span:nth-child(5) { transform: translateY(-8px) rotate(-2deg); }
h1:hover span:nth-child(6) { transform: translateY(-2px) rotate(0deg); }
h1:hover span:nth-child(7) { transform: translateY(-2px) rotate(0deg); }
h1:hover span:nth-child(8) { transform: translateY(-8px) rotate(2deg); }
h1:hover span:nth-child(9) { transform: translateY(-15px) rotate(5deg); }
h1:hover span:nth-child(10) { transform: translateY(-22px) rotate(8deg); }
h1:hover span:nth-child(11) { transform: translateY(-30px) rotate(12deg); }
h1:hover span:nth-child(12) { transform: translateY(-35px) rotate(15deg); }
h1:hover span:nth-child(13) { transform: translateY(-40px) rotate(18deg); }
h1:hover span:nth-child(14) { transform: translateY(-45px) rotate(22deg); }
h1:hover span:nth-child(15) { transform: translateY(-50px) rotate(25deg); }
h1:hover span:nth-child(n+16) { transform: translateY(-55px) rotate(28deg); }

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-style: italic;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #f5f5f5;
}

p {
  /* text-indent: 1.5em; */
  margin: 1rem 0;
}

ul {
  padding-left: 2rem;
  list-style-type: disc;
}

ul ul {
  list-style-type: circle;
  margin-top: 0.4rem;
}

a {
  color: #cba6f7;
  text-decoration: none;
}

a:hover {
  border-bottom: 1px dotted #cba6f7;
}

.conversation {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.conversation .objection {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  text-align: right;
  color: #f7d7a6; /* soft highlight for contrast */
}

.conversation .response {
  font-family: "Cormorant Garamond", Georgia, serif;
  text-align: left;
  color: #e0e0e0;
}

blockquote {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.05rem;
  color: #dcdcdc;
  margin: 1.5rem 2rem;
  padding: 0;
}

blockquote p {
  margin: 0;
}

blockquote cite {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.9rem;
  font-style: normal;
  color: #aaa;
  text-align: right;
}
