.home-hero {
      position: relative;
      text-align: center;
      padding: 40px 20px;
      min-height: 280px;
      color: white;
      overflow: hidden;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    @media (max-width: 767px) {
      .home-hero {
        background-image: url('/images/Mobile-Background-Thumbnail-Color-Analysis.webp');
      }
    }

    @media (min-width: 768px) {
      .home-hero {
        background-image: url('/images/Desktop-Background-Thumbnail-Color-Analysis.webp');
      }
    }

    .home-hero * {
      position: relative;
      z-index: 2;
    }

    .hero-tagline {
      font-family: 'Architects Daughter', cursive;
      font-size: 1.2rem;
      margin-bottom: 15px;
    }

    .hero-title {
      font-family: 'Noto Serif', Georgia, serif;
      font-weight: 700;
      font-size: 2.5rem;
      margin-bottom: 8px;
    }

    .hero-subtitle {
      font-family: 'Manrope', -apple-system, sans-serif;
      font-weight: 700;
      font-size: 1.1rem;
      margin-bottom: 15px;
    }

    .button-container {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 15px;
    }

    .hero-button {
      display: inline-block;
      padding: 20px 80px;
      background-color: rgba(255, 255, 255, 0.2);
      color: white;
      text-decoration: none;
      font-size: 18px;
      font-weight: 600;
      border: 2px solid white;
      border-radius: 5px;
      transition: background-color 0.5s, color 0.5s, box-shadow 0.5s;
      cursor: pointer;
      box-shadow: 0 0 15px rgba(212, 163, 115, 0.8);
    }

    .hero-button:hover {
      background-color: white;
      color: #D4A373;
      border-color: white;
      box-shadow: 0 0 20px rgba(212, 163, 115, 1);
    }

    @media (min-width: 768px) {
      .home-hero {
        padding: 60px 40px;
        min-height: 400px;
      }

      .hero-tagline {
        font-size: 1.5rem;
        margin-bottom: 20px;
      }

      .hero-title {
        font-size: 3.5rem;
        margin-bottom: 10px;
      }

      .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 20px;
      }

      .hero-button {
        padding: 28px 90px;
        font-size: 20px;
        box-shadow: 0 0 20px rgba(212, 163, 115, 0.8);
      }

      .hero-button:hover {
        box-shadow: 0 0 25px rgba(212, 163, 115, 1);
      }

      .button-container {
        gap: 30px;
        margin-top: 20px;
      }
    }

    @media (max-width: 767px) {
      .button-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
      }

      .hero-button {
        padding: 12px 50px;
        width: 100%;
        max-width: 350px;
      }
    }

    .seo-image {
      position: absolute;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }
