.sagyan-container {
  padding: 0;
  background: linear-gradient(to bottom, #fffde7, #fff8e1);
  font-family: 'Nunito', sans-serif; /* Using Nunito for body text on this page */
}

.sagyan-container h1 {
  text-align: center;
  color: #ff9800;
  font-family: 'Baloo 2', cursive;
  font-size: 3rem;
  margin-bottom: 10px;
}

.sagyan-container p.subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #5d4037;
  margin-bottom: 40px;
}

.sagyan-section {
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}

.sagyan-section h2 {
  color: #ef6c00;
  font-family: 'Baloo 2', cursive;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.sagyan-section p, .sagyan-section li {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

.sagyan-section ul {
  list-style: none; /* Remove default bullets */
  padding-left: 0;
}

.sagyan-section ul li {
  padding-left: 25px; /* Space for the custom marker */
  position: relative;
  margin-bottom: 8px;
}

.sagyan-section ul li::before {
  content: "🎯";
  position: absolute;
  left: 0;
  top: 2px;
}

.sagyan-founder {
  background: #fff8e1;
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  margin-bottom: 30px;
  border: 2px solid #ffecb3;
}

.sagyan-founder h2 {
  font-family: 'Baloo 2', cursive;
  font-size: 1.6rem;
  color: #d84315;
  margin-bottom: 10px;
}

.sagyan-founder p {
  font-size: 1rem;
  color: #4e342e;
  max-width: 600px; /* Improve readability */
  margin: auto;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .sagyan-about h1 {
    font-size: 2.2rem;
  }
  .sagyan-section, .sagyan-founder {
    padding: 20px;
  }
}