/* Base Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff8ee;
}

.benefits-section {
  padding: 40px 20px;
  text-align: center;
  
}

.section-heading {
   font-size: 36px;
  font-weight: 500;
  color: #1a237e;
  margin-bottom: 40px;
}

.subheading {
  font-weight: 400;
  font-size: 20px;
  color: #1a237e;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.benefit-card {
  background-color: #fff8ee;
  padding: 15px;
  border-radius: 12px;
  transition: background-color 0.3s ease;
}

.benefit-card:hover {
  background-color: #ffe0b2;
}

.highlight {
  background-color: #fff8ee;
}

.highlight:hover {
  background-color: #d6c9ff;
}

.circle-image {
  width: 140px;
  height: 140px;
  margin: 0 auto 15px;
  border-radius: 0%;
  overflow: visible;
  transition: transform 0.3s;
}

.circle-image img {
  width: 100%;
  height: 100%;
  
}

.benefit-card:hover .circle-image {
  transform: scale(1.05);
}

.benefit-card p {
  font-size: 20px;
  font-weight: 500;
  color: #212121;
  margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .circle-image {
    width: 120px;
    height: 120px;
  }

  .benefit-card p {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    font-size: 20px;
  }

  .subheading {
    font-size: 16px;
  }

  .circle-image {
    width: 100px;
    height: 100px;
  }

  .benefit-card {
    padding: 15px;
  }

  .benefit-card p {
    font-size: 14px;
  }
}

/* Add these styles to your existing CSS */

/* Toggle Switch Styles */
.toggle-container {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  background: white;
  border-radius: 30px;
  padding: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.toggle-btn {
  padding: 10px 25px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray);
  border-radius: 25px;
  transition: all 0.3s ease;
}

.toggle-btn.active {
  background: #10175a;
  color: white;
}

/* Level Cards Toggle System */
.level-card {
  display: none;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.level-card.active {
  display: block;
}

/* Remove the hover effect since we're toggling */
.level-card:hover {
  transform: none;
}

/* Adjust the level text positioning */
.level-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--text-dark);
}

/* Remove the specific level2 text positioning */
#level2 .level-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px;
}