


.price_container {
    margin: 50px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.price_container h1 {
    color: #0090c5;
    text-align: center;
}
.price_container .tables-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.price_container table {
    max-width: 860px;
    border-collapse: collapse;
    margin: 20px auto;
}
.price_container th, .price_container td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
    vertical-align: middle;
}
.price_container th {
    background-color: #0090c5;
    color: white;
}

.price_container .note {
    color: #0090c5;
    font-style: italic;
    text-align: center;
    margin-top: 20px;
}
.price_container .link {
    text-align: center;
    margin-top: 20px;
}
.price_container .link a {
    color: #0090c5;
    text-decoration: none;
    font-weight: bold;
}
.price_container .link a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .price_container {
        margin: 0 5px;
        padding: 10px;
    }
    .price_container .tables-container {
        flex-direction: column;
        align-items: stretch;
    }
    .price_container table {
        width: 100%;
        font-size: 12px;
        margin-top: 15px;
        max-width: 100%;
        overflow-x: auto;
        display: block;
    }
    .price_container th, .price_container td {
        padding: 8px;
        font-size: 12px;
        line-height: normal;
    }
    .price_container h1 {
        font-size: 20px;
    }
}



.pricing-section {
    padding: 2rem 1rem;
    background-color: #f9fafb;
    font-family: 'Segoe UI', sans-serif;
    margin: 0 50px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);

  }
  
  .section-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #222;
  }
  
  .pricing-table-scroll {
    overflow-x: auto;
    max-width: 960px;
    margin: 0 auto;
  }
  
  .pricing-table {
    border-collapse: collapse;
    width: 100%;
    background: white;
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border-radius: 8px; */
    overflow: hidden;
  }
  
  .pricing-table thead {
    background-color: #ffffff;
    color: #061630;
  }
  
  .pricing-table th,
  .pricing-table td {
    
    text-align: center;
    border: 1px solid #e5e7eb;
    font-size: 0.95rem;
  }
  
  .pricing-table th {
    font-weight: 600;
    white-space: nowrap;
  }
  
  .pricing-table td {
    background-color: #fff;
  }
  
  .pricing-table tbody tr:nth-child(even) td {
    background-color: #f3f4f6;
  }
  
  .pricing-table .highlight td,
  .pricing-table .highlight th {
    background-color: #e0f2fe;
    font-weight: 500;
    color: #0369a1;
  }
  
  @media (max-width: 768px) {
    .pricing-section {
      padding: 1rem;
      margin: 0 5px;
    }
  
    .section-title {
      font-size: 1.5rem;
    }
  }
  

.pricing-table th {
    font-weight: 600;
    white-space: nowrap;
    line-height: 1.4;
  }
  
  .price {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: #16a34a;
    margin-top: 0.25rem;
  }
  
  .use-btn {
    margin-top: 0.4rem;
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
    background-color: #3b82f6;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
  }
  
  .use-btn:hover {
    background-color: #2563eb;
  }
  
  