body {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin: 0;
  background: linear-gradient(120deg,#e0e7ff 0%, #eaf6fd 100%);
  color: #222;
}



.pricing-section {
  max-width: 1100px;
  margin: 2rem auto 0 auto;
  padding: 1.5rem;
}

.pricing-section h2 {
  text-align: center;
  font-size: 2.1rem;
  margin-bottom: 2rem;
  color: #143055;
  letter-spacing: 1px;
  font-weight: 500;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: 2rem;
}

.package-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 0 4px 2px rgba(20,48,85,0.12);
  padding: 2rem 1.3rem 1.8rem 1.3rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 2px solid transparent;
}

.package-card:hover,
.package-card.popular {
  box-shadow: 0 8px 32px rgba(33,181,190,0.12), 0 1.5px 14px rgba(20,48,85,0.13);
  border: 2.2px solid #007AFF;
  transform: translateY(-4px) scale(1.03);
}

/*MOst Popular Badge*/
.package-card .badge {
  position: absolute;
  top: 14px;
  right: -46px;
  background: linear-gradient(90deg, #21b5be 60%, #143055 100%);
  color: #fff;
  padding: 6px 44px;
  font-size: 1.05rem;
  font-weight: 600;
  transform: rotate(24deg);
  box-shadow: 0 2px 8px rgba(33,181,190,0.15);
  letter-spacing: 1px;
  z-index: 2;
}

.package-card h3 {
  margin-top: 0.5rem;
  font-size: 1.35rem;
  color: #143055;
  margin-bottom: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.price {
  font-size: 1.2rem;
  color: #21b5be;
  margin-bottom: 1rem;
  font-weight: 500;
}
.price span {
  font-size: 2.1rem;
  font-weight: 700;
  color: #143055;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.package-card ul li {
  padding: 0.33rem 0;
  border-bottom: 1px solid #f0f2f7;
  font-size: 1.01rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #222;
}
.package-card ul li:last-child {
  border-bottom: none;
}

.package-card i {
  color: #21b5be;
  font-size: 1.1em;
  min-width: 22px;
  text-align: center;
  opacity: 0.8;
}

.notice {
  margin: 2.5rem auto 1.5rem auto;
  max-width: 650px;
  background: #e9f7fa;
  color: #12506f;
  padding: 1.2rem 1.4rem;
  border-left: 5px solid #21b5be;
  border-radius: 0 12px 12px 0;
  font-size: 1rem;
  text-align: center;
  box-shadow: 0 1px 7px rgba(33,181,190,0.12);
}

@media (max-width: 700px) {
  .triton-header {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.3rem 0.3rem 1rem 0.3rem;
  }
  .triton-header h1 {
    font-size: 2rem;
  }
  .triton-header .subtitle {
    font-size: 1rem;
  }
  .pricing-section h2 {
    font-size: 1.3rem;
  }
  .pricing-grid {
    gap: 1rem;
    grid-template-columns: 1fr;
  }
  .package-card {
    padding: 1.2rem 0.7rem;
  }
}