      .hero-section {
        position: relative;
        min-height: 411px;
        display: flex;
        align-items: center;
        background-image: url("banner.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
      }

      .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to right,
          rgba(255, 255, 255, 0.2),
          transparent
        );
      }

      .content-container {
        position: relative;
        z-index: 10;
        width: 100%;
        max-width: 1600px;
        margin: 0 auto;
        padding: 0 20px;
      }
      .content-wrapper {
        max-width: 730px;
        margin-left: 0;
        padding: 58px 0;
      }
      .main-heading {
        color: #212226;
        font-family: "Roboto", sans-serif;
        font-size: 38px;
        font-weight: 700;
        line-height: normal;
        letter-spacing: 0.38px;
        margin-bottom: 34px;
        width: 730px;
      }
      .details {
        color: #070709;
        font-family: "Roboto", sans-serif;
        font-size: 20px;
        font-weight: 400;
        line-height: 1.5;
        letter-spacing: 0.2px;
        margin-bottom: 46px;
        max-width: 265px;
      }
      .cta-button {
        background: #af4058;
        color: #ffffff;
        text-align: center;
        font-family: "Roboto", sans-serif;
        font-size: 22px;
        font-weight: 700;
        line-height: 21px;
        width: 331px;
        height: 65px;
        border: none;
        cursor: pointer;
        transition: background-color 0.2s ease;
      }

      .cta-button:hover {
        background: #9a3650;
      }

      /* Responsive Design */
      @media (max-width: 1200px) {
        .content-wrapper {
          margin-left: 20px;
          max-width: 100%;
        }

        .main-heading {
          width: 100%;
          max-width: 613px;
        }
      }

      @media (max-width: 768px) {
        .content-wrapper {
          margin-left: 0;
          padding: 40px 0;
        }

        .main-heading {
          font-size: 28px;
          margin-bottom: 24px;
        }

        .details {
          font-size: 18px;
          margin-bottom: 32px;
          max-width: 100%;
        }

        .cta-button {
          width: 100%;
          max-width: 331px;
          font-size: 20px;
        }
      }

      @media (max-width: 480px) {
        .content-container {
          padding: 0 16px;
        }

        .main-heading {
          font-size: 24px;
        }

        .details {
          font-size: 16px;
        }

        .cta-button {
          font-size: 18px;
          height: 60px;
        }
      }