.hero {
            min-height: calc(80vh - 120px);
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0 10%;
            animation: fadeInUp 0.8s ease-out 0.4s;
            animation-fill-mode: backwards;
        }
        .hero-content {
            text-align: center;
        }
        .hero-text {
            max-width: 550px;
            margin: 0 auto;
        }
        .hero-title {
            font-family: "Titillium Web", sans-serif;
            font-weight: 700;
            font-size: 48px;
            color: #DB2C19;
            margin-bottom: 5px;
        }
        .white-text {
            color: white;
        }
        .hero-description {
            max-width: 560px;
            font-family: "Titillium Web", sans-serif;
            font-weight: 300;
            font-size: 18px;
            line-height: 1.6;
            color: #AEAEAE;
            margin-bottom: 20px;
        }
        .hero-scroll-btn {
            display: inline-flex;
            align-items: center;
            font-family: "Titillium Web", sans-serif;
            font-weight: 400;
            font-size: 18px;
            text-decoration: none;
            color: #FFFFFF;
            background-color: rgba(0, 0, 0, 0.4);
            border: 1px solid #DB2C19;
            padding: 12px 30px;
            border-radius: 50px;
            transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
        }
        .hero-scroll-btn svg {
            margin-left: 8px;
            fill: #DB2C19;
            transition: fill 0.3s ease;
        }
        .hero-scroll-btn:hover svg {
            fill: #ffffff;
        }
        .hero-scroll-btn:hover {
            background-color: #DB2C19;
            color: #FFFFFF;
            transform: translateY(-3px);
        }
        .reviews-info {
            font-size: 14px;
            color: #AEAEAE;
            margin-bottom: 15px;
        }

@media only screen and (max-width: 800px) {
  .hero {
      padding: 50px 20px;
      min-height: auto;
  }

  .hero-content {
    margin-top: 100px;
      flex-direction: column;
      align-items: flex-start;
  }

  .hero-text {
      max-width: 100%;
      text-align: center;
  }

  .hero-title {
      font-size: 35px;
  }

  .hero-description {
      font-size: 15px;
  }

  .hero-scroll-btn {
      margin: 0 auto 50px auto;
  }

  .hero-image-group {
      position: relative;
      top: auto;
      transform: none;
      width: 100%;
      right: auto;
      max-width: 500px;
      margin: 0 auto;
  }
  .hero-image {
    display: none;
  }
}
