    *{
      padding: 0;
      margin: 0;
      box-sizing: border-box;
    }
    .hybrid-section {
      display: flex;
      flex-wrap: wrap;
      padding: 30px;
      background-color: #ffffff;
      border-radius: 10px;
      max-width: 1200px;
      margin: 20px auto;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .hybrid-content {
      flex: 1;
      min-width: 300px;
      padding: 20px;
    }

    .hybrid-content h3 {
      font-size: 20px;
      color: #444;
      margin-bottom: 15px;
    }

    .hybrid-content p, .hybrid-content ul {
      font-size: 16px;
      color: #555;
      line-height: 1.6;
      margin-bottom: 10px;
    }

    .hybrid-content ul {
      list-style-type: disc;
      padding-left: 20px;
    }

    .hybrid-content .highlight {
      color: green;
      font-weight: bold;
    }

    .btn-book {
        text-align: center;
        width: 100%;
      display: inline-block;
      margin-top: 15px;
      padding: 10px 20px;
      background-color: green;
      color: white;
      border: none;
      border-radius: 5px;
      text-decoration: none;
      font-size: 16px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .btn-book:hover {
      background-color: darkgreen;
    }

    .hybrid-image {
      flex: 1;
      min-width: 300px;
      padding: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hybrid-image img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
    }

    @media (max-width: 768px) {
      .hybrid-section {
        flex-direction: column;
      }

      .hybrid-content, .hybrid-image {
        padding: 10px;
      }
    }