* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "INTER" , sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    padding-left:10%; 
    padding-right:10%; 
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1% 2%  1% 2%;
    font-weight: bold;
    background: rgb(255,131,170);
    background: linear-gradient(150deg, rgba(255,131,170,1) 27%, rgba(244,213,226,1) 36%, rgba(97,160,233,1) 52%, rgba(244,213,226,1) 69%, rgba(255,131,170,1) 84%, rgba(97,160,233,1) 95%);
    border-radius: 25px;
    margin:1%;

  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
  }
  
  nav a {
    text-decoration: none;
    color: #333;
  }

  main {
    padding-top: 3%;
  }
  
  .pricing-section h2 {
    font-size: 700%;
    font-family: "INTER" , sans-serif;
  }
  .pricing-section {
    text-align: start;
    position: relative;
    height:90vh;
  }

  .top{
    width: 50vh;
    position: absolute;
  }
  .cards {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2%;
    position: absolute;
    width: 100%;
    height:85vh;
  }

  .card{
    color: black;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    width: 40%;
    padding-top: 5%;
    border-radius: 250px 250px 0% 0%; 
  }

  .starter{
    height: 50%;
    background: rgb(255,131,170);
    background: linear-gradient(150deg, rgba(255,131,170,1) 27%, rgba(244,213,226,1) 36%, rgba(97,160,233,1) 52%, rgba(244,213,226,1) 69%, rgba(255,131,170,1) 84%, rgba(97,160,233,1) 95%);
  }

  .pro{
    height: 70%;
    background: rgb(255,131,170);
    background: linear-gradient(150deg, rgba(255,131,170,1) 27%, rgba(244,213,226,1) 36%, rgba(97,160,233,1) 52%, rgba(244,213,226,1) 69%, rgba(255,131,170,1) 84%, rgba(97,160,233,1) 95%); 
  }

  .enterprise{
    height: 90%;
    background: rgb(255,131,170);
    background: linear-gradient(150deg, rgba(255,131,170,1) 27%, rgba(244,213,226,1) 36%, rgba(97,160,233,1) 52%, rgba(244,213,226,1) 69%, rgba(255,131,170,1) 84%, rgba(97,160,233,1) 95%);    
  }
  .card h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .price {
    font-size: 36px;
    font-weight: bold;
  }
  
  .book-btn {
    background-color: white;
    border-radius: 25px;
    border: none;
    color: black;
    padding: 10px 15px;
    margin: 15px 0;
    cursor: pointer;
  }
  
  .card ul {
    list-style: none;
    margin-top: 15px;
  }
  
  .card li {
    margin: 10px 0;
  }
  