/* Hero Section */
.hero-container {
    height: 90vh;
    width: 100%;
    /* padding: 20px; */
    /* max-width: 1200px; */
    margin: 0 auto;
    background-color:  #706fab;
    position: relative;
    top: 0;
  }

  /* Grid Layout */
  .hero-grid {
      height: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: center;
  }

  /* Heading and Paragraph */
  .hero-text {
    text-align: center;
  }
  .hero-text h1 {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin: 0;
  }

  .hero-text p {
    font-size: 18px;
    color: white;
    margin-top: 10px;
  }

  /* Image */
  .hero-image {
    height: 100%;
    width: 100%;
    background-color: pink;
    /* border: 4px solid black; */
  }
  .hero-image img {
    height: 100%;
    width: 100%;
    /* border-radius: 10px; */
  }

  /* Responsive Design */
  @media (min-width: 1024px) {
    .hero-grid {
      grid-template-columns: 3fr 4fr;
      gap: 30px;
    }

    .hero-text h1 {
      font-size: 48px;
    }

    .hero-text p {
      font-size: 20px;
    }
  }