body { 
  color: var(--text-color);
  background-color:var(--light);
}
.page-header {
  background-color: var(--primary-color);
  color: white;
  border-radius: 0 0 20px 20px;
  padding: 2rem 0;
  margin-bottom: 3rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.page-header h1 {
  font-weight: 700;
}

.page-header p {
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

.plan-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
  overflow: hidden;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card-header {
  background-color: var(--white);
  border-bottom: none;
  padding: 1.5rem;
}

.card-body {
  padding: 1.5rem;
}

.category-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.category-title {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.storage-badge {
  background-color: var(--accent-color);
  color: var(--light);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 1rem;
}

.upgrade-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.upgrade-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
}

.upgrade-list li:last-child {
  border-bottom: none;
}

.upgrade-list i {
  color: var(--primary-color);
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.upgrade-note {
  font-size: 0.9rem;
  color: var(--light-text);
  flex-grow: 1;
}

.pricing-note {
  background-color: #f8fafc;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-color);
}

.pricing-note h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.pricing-note p {
  margin-bottom: 0.5rem;
}

.pricing-table {
  width: 100%;
  margin-top: 0.5rem;
}

.pricing-table th {
  font-weight: 600;
  color: var(--primary-color);
}

.pricing-table td, .pricing-table th {
  padding: 0.5rem;
  border-bottom: 1px solid #e2e8f0;
}

@media (max-width: 767.98px) {
  .page-header {
    padding: 1.5rem 0;
    margin-bottom: 2rem;
  }
  
  .card-header, .card-body {
    padding: 1rem;
  }
}
