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

    body {
      font-family: 'Playfair Display', serif;
      background-color: #622f32;
      color: #f9f9f9;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 60px;
      background-color: #622f32;
    }

    nav a {
      color: #f9f9f9;
      text-decoration: none;
      margin-left: 30px;
      font-size: 18px;
    }

    .hero {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px;
      gap: 60px;
      flex-wrap: wrap;
    }

    .hero-image {
      flex: 1;
      max-width: 500px;
    }

    .hero-image img {
      width: 100%;
      border-radius: 50% 0 0 50%;
    }

    .hero-content {
      flex: 1;
      max-width: 500px;
    }

    .hero-content h1 {
      font-size: 48px;
      margin-bottom: 20px;
    }

    .hero-content p {
      font-size: 18px;
      line-height: 1.6;
      margin-bottom: 30px;
    }

    .hero-content button {
      background-color: #f9f9f9;
      color: #622f32;
      border: none;
      padding: 15px 30px;
      font-size: 16px;
      border-radius: 25px;
      cursor: pointer;
    }

    .hero-content button:hover {
      background-color: #e0dede;
    }

    @media (max-width: 768px) {
      .hero {
        flex-direction: column;
        padding: 40px 20px;
      }

      .hero-content h1 {
        font-size: 36px;
      }

      header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
      }

      nav {
        margin-top: 10px;
      }
    }
  </style>
