.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Hero Section */
.hero-plan {
  background-color: white;
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.hero-plan h1 {
  color: #e60000;
  margin-bottom: 1rem;
}

.hero-plan p {
  font-size: 1.25rem;
  margin: 0 auto;
}

/* About Section */
.about {
  padding: 4rem 0;
  background-color: #f9f9f9;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature h3 {
  color: #e60000;
  margin-top: 0;
}

/* Plans Section */
.plans {
  padding: 4rem 0;
  background-color: #f3f4f6;
}

.plans-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  justify-content: center;
}

.plan {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 1px solid #e5e7eb;
}

.plan:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
              0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.plan.featured {
  border: 2px solid #e60000;
  transform: scale(1.05);
}

.plan.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: #e60000;
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.plan h3 {
  margin-top: 0;
}

.plan .price {
  font-size: 1.75rem;
  font-weight: 700;
  color: #e60000;
  margin: 1rem 0;
}

.plan ul {
  list-style: none;
  margin: 1.5rem 0;
}

.plan li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.plan li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.plan .description {
  font-size: 0.875rem;
  color: #4b5563;
  margin-top: 1rem;
}

/* Terms Section */
.terms {
  padding: 4rem 0;
  background-color: white;
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.term-item {
  padding: 1.5rem;
  background-color: #f3f4f6;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.term-item:hover {
  transform: translateY(-5px)
}


/* Info Section */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.info-card {
  padding: 1.5rem;
  background-color: #f3f4f6;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px)
}

.steps-list{
  margin-left: 1.3rem;
}

.pt-50 {
  padding-top: 0px !important;
}