.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
  }
  .section {
    background-color: #9575cd;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 40px;
    position: relative;
  }
  .section img {
    width: 60%;
    margin: 5%;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease;
  }
  .section:hover img {
    transform: scale(1.05);
  }
  .section .content {
    padding: 40px;
    color: white;
  }
  .section h2 {
    color: wheat;
    margin-top: 0;
    font-size: 4rem;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
  }
  .section:hover h2 {
    transform: translateY(-5px);
  }
  .section p {
    color: white;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .section ul {
    list-style-type: none;
    color: white;
    font-size: 1.2rem;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
  }
  .section ul li {
    position: relative;
    color: white;
    font-size: 1.2rem;
    padding-left: 20px;
    margin-bottom: 10px;
  }
  .section ul li:before {
    content: "•";
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    color: white;
  }
  .section .button {
    display: inline-block;
    background-color: #512da8;
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.7rem;
    transition: background-color 0.3s ease;
  }
  .section .button:hover {
    background-color: white;
  }
  .h1{
    color: wheat;
    font-size: xx-large;
  }
  @media screen and (max-width: 768px) {
    .section h2 {
      font-size: 2.5rem;    
    }
    .section img {
      width: 100%;
      margin-top: 5%;
      margin-bottom: 5% ;
    }
  }