/* Hero Section */
    .hero {
      position: relative;
      width: 100%;
      height: 85vh;
      background: url('../images/banner/banner.png') center/cover no-repeat;
      display: flex;
      align-items: center;          /* vertically center */
      justify-content: flex-end;    /* content moves to right side */
      color: #fff;
      padding-right: 8%;            /* spacing from right edge */
    }

    /* Overlay */
    .hero::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.25);
      z-index: 1;
    }

    /* Text Styling */
    .hero-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;           /* ✅ Keep text lines centered together */
      text-align: center;            /* ✅ Center the text block itself */
    }

    .hero-content h1,
    .hero-content p {
      font-weight: 700;
      font-size: 2.5rem;
      margin: 0;
    }

    .hero-content p {
      margin-top: 0.5rem;
    }

    @media (max-width: 768px) {
      .hero {
        height: 65vh;
        justify-content: center;
        padding-right: 0;
      }

      .hero-content h1,
      .hero-content p {
        font-size: 1.8rem;
      }
    }