/* General Styling */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #f5faff;
  color: #0f1724;
  line-height: 1.6;
}

/* Header */
.header {
  background: linear-gradient(135deg, #06b6d4, #009e9e);
  color: white;
  text-align: center;
  padding: 40px 15px;
}

.header h1 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.header p {
  font-size: 1rem;
  opacity: 0.9;
}

/* Section */
.plans-section {
  text-align: center;
  padding: 50px 20px;
}

.plans-section h2 {
  font-size: 1.8rem;
  color: #024950;
  margin-bottom: 5px;
}

.divider {
  width: 80px;
  height: 4px;
  background: #00bfa6;
  border: none;
  margin: 10px auto 40px auto;
  border-radius: 5px;
}

/* Plans Container */
.plans-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.plan-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  width: 300px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.plan-card h3 {
  color: #008c8c;
  margin-bottom: 10px;
}

.plan-card p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 15px;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
  text-align: left;
}

.plan-card ul li {
  margin: 6px 0;
  font-size: 0.9rem;
}

/* Featured Plan */
.featured {
  background: linear-gradient(135deg, #e0f7fa, #b2ebf2);
  border: 2px solid #00b3a6;
}

/* Button */
.btn {
  background: linear-gradient(135deg, #00b3a6, #009688);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover {
  background: linear-gradient(135deg, #009688, #00b3a6);
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: #0f1724;
  color: white;
  padding: 30px 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: flex-start;
}


.footer-section h3 {
  color: #00b3a6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section a {
  color: white;
  text-decoration: none;
}

.footer-section a:hover {
  color: #00b3a6;
}

.social-icons a {
  color: white;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #00b3a6;
}

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 20px;
  padding-top: 10px;
  font-size: 0.9rem;
  color: #bbb;
}


.back {
  background-color: #07a6c6;       /* Nivera blue */
  color: white;
  border: none;
  padding: 20px 35px;
  align-items: center;
  border-radius: 8px;
  font-size: 16px;
  margin-bottom: 30px;
  margin-top: 30px;
  margin-left: 50%;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.back:hover {
  background-color: #05889f;       /* Darker on hover */
  transform: translateY(-2px);
}

.back:active {
  transform: scale(0.97);
}

a {
  text-decoration: none;           /* Remove underline from link */
}

