.table-container {
  padding: 60px 24px;
  margin: 0 auto;
  max-width: 1000px;
}

.table-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.table-description {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
}

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.pricing-table th,
.pricing-table td {
  padding: 1.25rem;
  text-align: center;
  border: 1px solid #e5e7eb;
}

.pricing-table th {
  background-color: #2563eb;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-table td {
  font-size: 1rem;
  color: #444;
  background-color: white;
  transition: background-color 0.3s ease;
}

.pricing-table tr:hover td {
  background-color: #f8f9fa;
}

.pricing-table tr:first-child th:first-child {
  border-top-left-radius: 12px;
}

.pricing-table tr:first-child th:last-child {
  border-top-right-radius: 12px;
}

.pricing-table tr:last-child td:first-child {
  border-bottom-left-radius: 12px;
}

.pricing-table tr:last-child td:last-child {
  border-bottom-right-radius: 12px;
}

/* Highlight the Pro plan */
.pricing-table th:nth-child(3),
.pricing-table td:nth-child(3) {
  background-color: #f0f7ff;
  position: relative;
}

.pricing-table th:nth-child(3)::after {
  content: "Popular";
  position: absolute;
  top: 0;
  right: 0;
  background-color: #2563eb;
  color: white;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-bottom-left-radius: 8px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .table-container {
    padding: 40px 16px;
  }

  .table-title {
    font-size: 1.75rem;
  }

  .table-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .pricing-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .pricing-table th {
    font-size: 1rem;
  }
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.table-container {
  animation: fadeIn 0.6s ease-out;
} 