    body {
      margin: 0;
      font-family: "Poppins", sans-serif;
      background-color: #fff;
      color: #333;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    .intro {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 60px 10%;
      background-color: #ffffff;
      flex: 1;
      box-sizing: border-box;
    }

    .text-container {
      flex: 1;
      padding-right: 40px;
    }

    .text-container h1 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: #222;
    }

    .text-container p {
      font-size: 20px;
      color: #555;
      max-width: 400px;
      line-height: 1.6;
      margin-bottom: 30px;
    }

    .buttons {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }

    .buttons button {
      background-color: #9b8545;
      color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: 6px;
      cursor: pointer;
      transition: background-color 0.3s;
      font-size: 1rem;
    }

    .buttons button:hover {
      background-color: #806e3b;
    }

    .buttons a {
      color: white;
      text-decoration: none;
    }

    .image-container {
      flex: 1;
      display: flex;
      justify-content: center;
    }

    .image-container img {
      width: 130%;
      border-radius: 12px;
      object-fit: cover;
      border: 1px solid #000;
    }

    footer {
      background-color: #A59D84;
      color: #fff;
      text-align: center;
      padding: 15px 0;
      font-size: 0.9rem;
      letter-spacing: 0.5px;
    }

    @media (max-width: 900px) {
      .intro {
        flex-direction: column;
        text-align: center;
        padding: 40px 5%;
      }

      .text-container {
        padding-right: 0;
        margin-bottom: 30px;
      }

      .image-container img {
        width: 100%;
      }
    }