* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: #b7dcff;
  padding: 40px;
  text-align: center;
}

h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

h1 span {
  color: #ff4da6;
}

p {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.6;
}

img {
  width: 260px;
  height: 380px;
  object-fit: cover;
  border-radius: 25px;
  margin: 0 20px 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

img:hover {
  transform: scale(1.1);
}

button a {
  text-decoration: none;
  color: white;
  font-size: 15px;
  font-weight: bold;
}

button:hover {
  background-color: #e60073;
}

.container{
  display: flex;
  justify-content: center;
  
}
.box{
    width: 300px;
   height: 450px;
    margin: 20px;
}

button {
  background-color: #ff4da6;
  border: none;
  padding: 10px 22px;
  border-radius: 25px;
  margin-bottom: 40px;
  cursor: pointer;
  /* margin-left: 0; */
}
section {
  width: 50%;
  margin: 40px auto;
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  font-family: Arial, Helvetica, sans-serif;
  text-align: left;
}


section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

section ul li {
  font-size: 16px;
  margin: 12px 0;
  padding-left: 20px;
  position: relative;
  color: #333;
}

@media (max-width: 768px) {
  body {
    padding: 20px;
  }

  h1 {
    font-size: 28px;
  }

  p {
    font-size: 14px;
  }

  img {
    width: 200px;
    height: 300px;
    margin: 0 10px 10px;
  }

  .container {
    flex-direction: column;
    align-items: center;
  }

  .box {
    width: 80%;
    height: auto;
  }

  section {
    width: 90%;
    padding: 15px 20px;
  }
}