.pricing-table {
    padding: 60px 20px;
    width: 100%;
  }
  
  
  .pricing-table .details {
    text-align: center;
    max-width: 960px;
    margin: 0 auto 40px;
  }
  
  .pricing-table .details h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .pricing-table .details p {
    font-size: 16px;
    color: #666;
  }
  
  .pricing-table .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .pricing-table .grid .box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .pricing-table .grid .box:hover {
    transform: translateY(-5px);
  }
  
  .pricing-table .grid .box .title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .pricing-table .grid .box .price {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #3a6073;
  }
  
  .pricing-table .grid .box .price span {
    display: block;
    font-size: 14px;
    color: #888;
    font-weight: normal;
  }
  
  .pricing-table .grid .box .features {
    margin-bottom: 20px;
    text-align: left;
  }
  
  .pricing-table .grid .box .features > * {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #555;
  }
  
  .pricing-table .grid .box .button button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(to bottom, #3a7bd5, #3a6073);
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .pricing-table .grid .box .button button:hover {
    background: linear-gradient(to bottom, #355fa3, #2b4f61);
  }
  
  .pricing-table .grid .box.professional {
    background: linear-gradient(to bottom, #3a7bd5, #3a6073);
    color: #fff;
    transform: scale(1.05);
  }
  
  .pricing-table .grid .box.professional .title,
  .pricing-table .grid .box.professional .price,
  .pricing-table .grid .box.professional .features > * {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  
  .pricing-table .grid .box.professional .button button {
    background: #fff;
    color: #3a6073;
  }
  
  @media (max-width: 768px) {
    .pricing-table .details h2 {
      font-size: 28px;
    }
  
    .pricing-table .grid {
      grid-template-columns: 1fr;
      padding: 0 10px;
    }
  
    .pricing-table .grid .box.professional {
      transform: none;
    }
  }
  