.pricing-packages .pricing-container {
  display: flex;
  justify-content: center;
  align-items: stretch; /* Ensures all cards have same height */
  gap: 20px;
  padding: 2rem;
  flex-wrap: wrap;
  background: #f9f9f9;
  font-family: "Segoe UI", sans-serif;
}

.pricing-packages .package-card {
  background: white;
  border-radius: 12px;
  padding: 1.2rem 1rem;
  width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  font-size: 16px;
  border: 1px solid #eee;
  min-height: 420px;
  height: 100%;
}

.pricing-packages .package-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.5rem;
}

.pricing-packages .package-icon {
  background: #00b3ff;
  color: white;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  border-radius: 50%;
}

.pricing-packages .package-card h3 {
  margin: 0;
  font-size: 2rem;
  font-weight: bold;
  color: #000;
}

.pricing-packages .subtitle {
  font-size: 1.2rem;
  color: #343434;
}

.pricing-packages .section2 {
  width: 100%;
}

.pricing-packages .section-header {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  padding: 0.6rem 0;
  font-weight: 600;
  font-size: 1.5rem;
  border-bottom: 1px solid #ddd;
}

.pricing-packages .section-list-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.pricing-packages .section-list-wrapper.open {
  max-height: 500px;
}

.pricing-packages .section-list {
  padding-left: 1rem;
  margin-top: 0.3rem;
}

.pricing-packages .section-list li {
  margin: 0.3rem 0;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}

.pricing-packages .check {
  color: #00b3ff;
  margin-right: 6px;
  font-weight: bold;
}

.pricing-packages .empty-note {
  color: #bbb;
  font-style: italic;
  font-size: 0.8rem;
}

.pricing-packages .card-bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-packages .price {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.5rem;
}

.pricing-packages .price span {
  font-size: 1.6rem;
  color: #666;
}

.pricing-packages .call-button {
  background-color: #00b3ff;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 1.5rem;
  font-weight: bold;
}

.pricing-packages .call-button:hover {
  background-color: #004d40;
}

.pricing-packages hr {
  width: 100%;
  margin: 1rem 0 0.5rem;
  border: none;
  border-top: 1px solid #ccc;
}
