* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Oswald:wght@200..700&display=swap');

body {
    color: black;
    background-color:#eeeee4;
    font-family: "Inter", sans-serif;
    letter-spacing: 0.2ex;
}

header {
    height: clamp(100px, 30vw, 200px);
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

header h1 {
  font-size: clamp(4rem, calc(9vw + 1rem), 6rem);
  text-align: center;
}

main {
    padding: 0 5vw;
}

  .choose-plans-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .plan-card {
    background-color: white;
    width: 100%;
    max-width: 320px;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 25px;
    border: 2px solid #ccc;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }
  
  .plan-card.featured {
    border-color: #2c54c2;
    box-shadow: 0 0 30px rgba(44, 84, 194, 0.3);
    background-color: #f9fbff;
  }

  .plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #2c54c2;
  }

  .plan-title {
    margin-bottom: 10px;
    font-size: 2em;
  }
  
  .plan-price {
    font-size: 3.5em;
    margin: 0;
  }
  
  .plan-month {
    font-size: 1.5em;
    color: #555;
    margin-bottom: 20px;
  }
  
  .plan-list {
    list-style: none;
    padding-left: 0;
    font-size: 1.2em;
    text-align: center;
    line-height: 1.8;
    margin-bottom: auto;
  }
  
  .plan-btn {
    margin-top: 30px;
    background-color: #2c54c2;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1.2em;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .plan-btn:hover {
    background-color: #1e3fa0;
    cursor: pointer;
  }

@media (max-width: 1280px) {
    .choose-plans-section {
      gap: 30px;
    }

    header {
        height: 180px;
        margin-top: 60px; 
     }
}

/*@media (max-width: 1152px) {
    .choose-plans-section {
      flex-direction: column;
      align-items: center;
      margin-bottom: 80px;
    }

    header {
       height: 180px;
       margin-top: 50px; 
    }

    .plan-card {
        margin-bottom: 20px;
      }
}*/

@media (max-width: 768px) {
    .choose-plans-section {
      flex-direction: column;
      align-items: center;
      padding: 20px 10px;
    }
  }