.profit-overview {
  padding: 40px 10%;
  background: #fff;
}

.profit-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.profit-text {
  flex: 1;
}

.profit-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #171994;
}

.profit-text h2 span {
  color: #0f4c61;
  text-decoration: underline;
}

.profit-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
}

.profit-logo {
  flex: 1;
  display: flex;
  justify-content: center;
}

.profit-logo img {
  max-width: 350px;
  height: auto;
}

@media (max-width: 768px) {
  .profit-container {
    flex-direction: column;
    text-align: center;
  }

  .profit-logo img {
    max-width: 250px;
    margin-top: 20px;
  }
}

/* Benefits */

.profit-benefits {
  padding: 40px 10%;
  background: #f8f9fb;
  text-align: center;
}

.profit-benefits h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #171994;
}

.profit-benefits h2 span {
  color: #0f4c61;
  text-decoration: underline;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.benefit-card i {
  font-size: 40px;
  color: #0f4c61;
  margin-bottom: 15px;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #171994;
}

.benefit-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .profit-benefits h2 {
    font-size: 2rem;
  }

  .benefit-card {
    padding: 20px;
  }
}

/* End */

/* Plans */

.profit-plans {
  padding: 40px 10%;
  background: #fff;
  text-align: center;
}

.profit-plans h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #171994;
}

.profit-plans h2 span {
  color: #0f4c61;
  text-decoration: underline;
}

/* Toggle Buttons */
.plan-toggle {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.plan-toggle label {
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  color: #171994;
}

.plan-toggle input {
  margin-right: 8px;
}

/* Cards */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.plan-card {
  background: #f9f9f9;
  padding: 40px 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.plan-card h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #171994;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  text-align: left;
}

.plan-card ul li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #555;
  padding-left: 20px;
  position: relative;
}

.plan-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0f4c61;
  font-weight: bold;
}

.plan-cta {
  display: inline-block;
  padding: 12px 25px;
  background: white;
  border: 2px solid #171994;
  color: #171994;
  font-weight: bold;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.plan-cta:hover {
  background: #171994;
  color: white;
}

/* Premium Highlight */
.plan-card.premium {
  background: linear-gradient(135deg, #3a868f, #171994);
  color: white;
  transform: scale(1.06);
}

.plan-card.premium h3,
.plan-card.premium ul li,
.plan-card.premium ul li::before {
  color: white;
}

.plan-card.premium .plan-cta {
  background: white;
  color: #171994;
  border: none;
}

.plan-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffce00;
  color: #333;
  padding: 5px 15px;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

@media (max-width: 600px) {
  .profit-plans h2 {
    font-size: 2rem;
  }
  .plan-card {
    padding: 30px 20px;
  }
}

/* End */