body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    color: #333;
    justify-self: center;
    align-self: center;
  }

  .hero {
    background: url('/static/images/boat/boat1.webp') center/cover no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    width: 100vw;
    overflow: hidden;
    box-sizing: border-box;
    padding: 20px;
  }

  .hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    justify-self: center;
    align-self: center;
  }

  .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #fff
  }

  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .cta-button {
    display: inline-block;
    padding: 14px 28px;
    background-color: hsl(246, 100%, 24%);
    color: white;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s;
  }

  .cta-button:hover {
    background-color: hsl(246, 100%, 30%);
  }

  .content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
  }

  h2, h3 {
    text-align: center;
    color: hsl(246, 100%, 24%);
  }

  .lift-card-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 20px;
  }

  .lift-card {
    background: #fff;
    
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid hsl(246, 100%, 24%);
  }

  .lift-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.2);
  }

  .lift-card h4 {
    color: hsl(246, 100%, 24%);
    margin-top: 0;
  }

  .gallery-container {
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 20px;
  }

  .carousel img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: cover;
    border-radius: 10px;
  }

  .testimonials {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    margin: 40px 0;
  }

  .testimonials blockquote {
    font-style: italic;
    color: #555;
    max-width: 700px;
    margin: auto;
  }

  .why-us {
    text-align: center;
    margin-top: 40px;
    background: #f9f9f9;
    padding: 10px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  .why-us h3 {
    color: hsl(246, 100%, 24%);
    margin-bottom: 20px;

  }
  .why-us ul {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: auto;
  }

  .why-us li {
    font-size: 1.1rem;
    padding: 10px 0;
  }

  footer {
    background: hsl(246, 100%, 24%);
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 1rem;
  }

  footer a {
    color: white;
    text-decoration: underline;
  }

  .floating-call-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: hsl(246, 100%, 24%);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1000;
  }