body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
  }
  header {
    background-color: #6a0dad; 
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 6px;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  header div {
    display: flex;
    gap: 10px;
  }
  header img {
    width: 60px;
    margin-top: -12px;
  }
  header h1 {
    margin: 0;
    font-size: 2rem;
  }
  
  header button {
    position: absolute;
    top: 22px;
    right: 50px;
    color: white;
    text-decoration: none;
    margin: 0 10px;
    padding: 8px 15px;
    border: 2px solid white;
    border-radius: 5px;
    font-size: 0.9rem;
    background-color: transparent;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;

  }
  
  header button:hover {
    background-color: white;
    color: #6a0dad; /* Purple */
  }
  .video-background {
    position: relative;
    min-height: 80vh;
    background-size: cover;
    overflow: hidden;
  }
  .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  .container {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 100%;
  }
  .head {
    color: #6a0dad;
    text-align: center;
    margin-top: 7rem;
    font-size: 40px;
    margin-bottom: 4rem;
  }
  .content {
    position: relative;
    text-align: center;
    padding: 40px 20px;
    background-image: linear-gradient(to bottom right, #e0b3f5, #dcd3f7); /* Light purple gradient */
    border-radius: 10px;
    max-width: 600px;
    margin: 50px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .content h2 {
    color: #6a0dad; /* Purple */
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
  }
  
  /* Footer */
  footer {
    background-color: #6a0dad; /* Purple */
    color: white;
    text-align: center;
    padding: 15px 20px;
    position: fixed;
    bottom: 0;
    width: 100%;
  }
  
  footer p {
    font-size: 0.9rem;
  }
  @media (max-width: 768px) {
    header {
        padding: 15px;
    }
    header img {
      width: 40px;
      margin-top: -3px;
    }
    header h1 {
        font-size: 1.5rem;
    }

    header button {
        top: 15px;
        right: 20px;
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .video-background {
        height: 70vh;
    }

    .container {
        top: 40%;
    }

    .head {
        font-size: 26px;
        margin-bottom: -3rem;
        padding: 8px 20px;
        
    }

    .content {
        padding: 30px 10px;
        max-width: 90%;
        
    }

    .content h2 {
        font-size: 1.5rem;
    }

    .content p {
        font-size: 0.9rem;
    }

    footer p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 10px;
    }
    header div {
      gap: 6px
    }
    header img {
      width: 30px;
      padding-top: 6px;
    }
    header h1 {
      margin-top: 6px;
        font-size: 1.2rem;
    }
    header button {
      padding: 4px 8px;
      margin-top: 0px;
      font-size: 12px;
    }
    .video-background {
      min-height: 82vh;
    }

    .head {
        font-size: 20px;
        margin-top: 5rem;
        justify-items: center;
        align-items: center;
    }
    .content {
        padding: 20px 5px;
        max-width: 75%;
    }
    .content h2 {
        font-size: 1.2rem;
    }

    .content p {
        font-size: 0.8rem;
    }

    footer p {
        font-size: 0.7rem;
    }
}

