
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');


        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .pricing-box {
            background-color: #e8f0fe;
            border-radius: 12px;
            padding: 24px;
            display: flex;
            flex-direction: column;
        }
        .pricing-title {
            font-size: 20px;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 8px;
        }
        .pricing-subtitle {
            color: #d81b60;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 24px;
        }
        .price {
            font-size: 48px;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 4px;
        }
        .vat {
            font-size: 24px;
            font-weight: 700;
            color: #555;
        }
        .price-details {
            margin: 24px 0;
            padding-left: 14px;
            list-style: square;
            
          
        }
        .price-details li {
            margin-bottom: 12px;
            font-size: 12px;
            line-height: 1.4;
        }
        .buy-button {
            background-color: #1a73e8;
            color: white;
            border: none;
            padding: 12px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 18px;
            font-weight: 700;
            margin-top: auto;
            text-align: center;
        }
        .buy-button:hover {
            background-color: #1557b0;
        }

        .pricing-tables {
  background: #fff;
}

.pricing-table {
  text-align: center;
  background: #fff;
  padding: 30px 0;
  transition: all .2s ease-in-out;
}

.pricing-table:hover .pricing-table-button {
  transform: scale(1.1);
  box-shadow: 0 0 15px #ccc;
  animation: glow-grow 2s ease-out infinite;
}

.pricing-table .title {
  font-size: 30px;
  font-weight: 500;
  color: #0D1F2D;
  margin: 0 0 30px 0;
}

.pricing-table .price-value {
  padding: 30px 0;
  background: #0094C6;
  margin-bottom: 30px;
  position: relative;
}

.pricing-table .price-value:before {
  content: "";
  border-top: 15px solid #fff;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  position: absolute;
  top: 0;
  left: 46%;
}

.pricing-table .price-title {
  display: block;
  font-size: 15px;
  font-weight: 900;
  color: #fff;
}

.pricing-table .price {
  display: inline-block;
  font-size: 50px;
  color: #fff;
  position: relative;
}

.pricing-table .currency {
  display: inline-block;
  margin-bottom: 10px;
  vertical-align: bottom;
  font-size: 22px;
  font-weight: 400;
  color: #f0f0f0;
}

.pricing-table .value-small {
  display: inline-block;
  margin-top: 15px;
  vertical-align: top;
  font-size: 22px;
  font-weight: 300;
  color: #f0f0f0;
}

.pricing-table .pricing-content {
  padding: 0;
  margin: 0 0 30px 0;
  list-style: none;
}

.pricing-table .pricing-content li {
  font-size: 16px;
  color: #546A7B;
  line-height: 35px;
}

.pricing-table .pricing-content li:nth-of-type(2n+1) {
  background-color: #fafafa;
}

.pricing-table .pricing-table-button {
  display: inline-block;
  padding: 8px 40px;
  background: #fff;
  color: #0094C6;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid #0094C6;
  border-radius: 2px;
  transition: all 0.5s ease 0s;
}

.pricing-table .pricing-table-button:hover {
  background: #0094C6;
  color: #fff;
  text-decoration: none;
}

@media only screen and (max-width: 990px) {
  .pricing-table {
    margin-bottom: 30px;
  }
}