    section.pricing {
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
      text-align: center;
    }

    section.pricing h2 {
          font-size: 70px;
    color: #128572;
    font-family: 'ClashDisplay-SemiBold';
      margin-bottom: 40px;
    }
    section.pricing h3 {
    font-family: 'Nunito-Regular';
    }


    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .pricing-item {
      background: #fff;
      padding: 30px 20px;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      opacity: 0;
      transform: translateY(40px);
      animation: fadeInUp 0.6s forwards;
    }

    .pricing-item:nth-child(1) { animation-delay: 0.1s; }
    .pricing-item:nth-child(2) { animation-delay: 0.2s; }
    .pricing-item:nth-child(3) { animation-delay: 0.3s; }
    .pricing-item:nth-child(4) { animation-delay: 0.4s; }
    .pricing-item:nth-child(5) { animation-delay: 0.5s; }
    .pricing-item:nth-child(6) { animation-delay: 0.6s; }

    @keyframes fadeInUp {
      to { opacity: 1; transform: translateY(0); }
    }

    .pricing-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    }

    .pricing-item h3 {
      font-size: 1.2rem;
      margin-bottom: 15px;
      color: #34495e;
    }

    .price {
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 20px;
      color: black;
      font-family: 'Nunito-Regular';
      justify-self: center;
    }

    .button {
      padding: 10px 20px;
      margin: 0;
      border: none;
      background: #12907c;
      color: #fff;
      font-size: 1rem;
      border-radius: 30px;
      cursor: pointer;
      transition: background(0.3s);
    }

    button:hover {
      background: #128572;
    }