    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: linear-gradient(to right, #fdfcfb, #e2d1c3);
      margin: 0;
      padding: 0;
      color: #333;
    }

    .container {
      max-width: 850px;
      margin: 50px auto;
      background: #ffffff;
      padding: 50px 40px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      border-radius: 12px;
      position: relative;
    }

    h1 {
      text-align: center;
      color: #7b3f00;
      margin-bottom: 30px;
      font-size: 2.5em;
    }

    p {
      font-size: 1.1em;
      line-height: 1.8em;
      margin-bottom: 20px;
    }

    .highlight {
      color: #c0392b;
      font-weight: bold;
    }

    .floating-message {
      font-style: italic;
      color: #555;
      background: #fff8f0;
      border-left: 4px solid #f39c12;
      padding: 10px 20px;
      margin: 25px 0;
      text-align: center;
      opacity: 0;
      transition: opacity 2s ease;
    }

    .floating-message.visible {
      opacity: 1;
    }

    .final-message {
      background: #fbeee6;
      border-left: 5px solid #c0392b;
      padding: 20px;
      margin-top: 40px;
      font-size: 1.1em;
    }

    .footer {
      text-align: center;
      margin-top: 50px;
      font-style: italic;
      color: #777;
      font-size: 1em;
    }
  .special-photo {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}