   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Arial', sans-serif;
    }
    body {
      background-color: #f4f6f5;
      color: #333;
      line-height: 1.6;
    }
    /* Header and Video Background */
    header {
      position: relative;
      height: 100vh;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    header video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }
    .overlay {
      text-align: center;
      color: #fff;
      z-index: 1;
      padding: 20px;
    }
    .overlay img {
      max-width: 300px;
      margin-bottom: 20px;
    }
    .overlay h1 {
      font-size: 3rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    .cta a {
      display: inline-block;
      padding: 15px 30px;
      background-color: #2a9d8f;
      color: #fff;
      text-decoration: none;
      border-radius: 5px;
      font-size: 1.2rem;
      transition: background-color 0.3s ease;
    }
    .cta a:hover {
      background-color: #287964;
    }
    /* Navigation */
    nav {
      background-color: #264653;
      position: sticky;
      top: 0;
      z-index: 100;
      padding: 15px 0;
    }
    nav ul {
      display: flex;
      justify-content: center;
      list-style: none;
    }
    nav ul li {
      margin: 0 20px;
    }
    nav ul li a {
      color: #fff;
      text-decoration: none;
      font-size: 1.1rem;
      transition: color 0.3s ease;
    }
    nav ul li a:hover {
      color: #2a9d8f;
    }
    /* Sections */
    section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }
    h2 {
      font-size: 2.5rem;
      color: #264653;
      text-align: center;
      margin-bottom: 40px;
    }
    h3 {
      font-size: 1.5rem;
      color: #264653;
      text-align: center;
      margin-bottom: 40px;
    }
    /* Philosophy Section */
    .philosophy .text p {
      font-size: 1.1rem;
      margin-bottom: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }
    /* Services Section */
    .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
    .step {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }
    .step:hover {
      transform: translateY(-5px);
    }
    .step h3 {
      font-size: 1.3rem;
      color: #264653;
      margin-bottom: 15px;
    }
    .step p {
      font-size: 1rem;
      color: #555;
    }
    /* Process Section */
    .checklist {
      max-width: 800px;
      margin: 0 auto;
      list-style: none;
    }
    .checklist li {
      font-size: 1.1rem;
      margin-bottom: 20px;
      position: relative;
      padding-left: 30px;
    }
    .checklist li:before {
      content: '✔';
      color: #2a9d8f;
      position: absolute;
      left: 0;
      top: 0;
    }
    /* Testimonials Section */
    .testimonials {
      background: linear-gradient(to bottom, #f4f6f5, #e9eceb);
      padding: 60px 20px;
    }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .testimonial {
      background-color: #fff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-left: 4px solid #2a9d8f;
    }
    .testimonial:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
    }
    .testimonial p {
      font-size: 1rem;
      color: #555;
      margin-bottom: 15px;
      font-style: italic;
    }
    .testimonial .author {
      font-size: 1.1rem;
      color: #264653;
      font-weight: bold;
    }
    .testimonial .rating {
      color: #2a9d8f;
      font-size: 1rem;
      margin-top: 10px;
    }
    /* About, Bookings, Free Stuff, and Privacy Policy Sections */
    .aboutme .text, .bookings .text, .freestuff .text, .privacypolicy .text {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }
    .about-photo {
      float: left;
      width: 200px;
      height: auto;
      margin: 0 20px 20px 0;
      border-radius: 10px;
    }
    .privacypolicy .text p {
      font-size: 0.8rem;
    }
    .privacypolicy h2 {
      font-size: 1rem;
      color: #264653;
      text-align: center;
      margin-bottom: 40px;
    }
    .text p {
      font-size: 1.1rem;
      margin-bottom: 20px;
    }
    /* Free Stuff Section */
    .freestuff .offerings {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
    .offering {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }
    .offering:hover {
      transform: translateY(-5px);
    }
    .offering h4 {
      font-size: 1.3rem;
      color: #264653;
      margin-bottom: 15px;
    }
    .offering p {
      font-size: 1rem;
      color: #555;
    }
    /* Footer */
    footer {
      background-color: #264653;
      color: #fff;
      text-align: center;
      padding: 20px;
    }
    footer .overlay img {
      max-width: 100px;
      margin-bottom: 10px;
    }
    /* Responsive Design */
    @media (max-width: 768px) {
      .overlay h1 {
        font-size: 2rem;
      }
      nav ul {
        flex-direction: column;
        text-align: center;
      }
      nav ul li {
        margin: 10px 0;
      }
      h2 {
        font-size: 2rem;
      }
      .steps, .offerings, .testimonials-grid {
        grid-template-columns: 1fr;
      }
    }