.education-page {
  font-family: 'Segoe UI', sans-serif;
  padding: 1rem;
  background: #f0f4f8;
  color: #333;
}

header {
  text-align: center;
  margin-bottom: 2rem;
}

header h1 {
  font-size: 1.8rem;
  color: #2c3e50;
}

header p {
  font-size: 1rem;
  color: #7f8c8d;
}

.education-section {
  margin-bottom: 2rem;
  transition: max-height 0.3s ease;
}

.education-section.collapsed {
  max-height: 2.5rem;
  overflow: hidden;
}

.education-section h2 {
  margin-bottom: 0.5rem; /* Reduce space below header */
  margin-top: auto;
  font-size: 1.4rem;
  color: #2c3e50;
  cursor: pointer;
  user-select: none;
}

.lesson-card {
  margin-top: 0.5rem; /* Optional: reduce vertical spacing between cards */
  padding: 1rem;
  background: #f9f9f9;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}


.education-section.collapsed .lesson-card {
  display: none;
}

.lesson-card h3 {
  font-size: 1.2rem;
  color: #34495e;
  margin-bottom: 0.5rem;
}

.lesson-card p {
  font-size: 0.95rem;
  color: #555;
}

.lesson-card button {
  background: #34495e;
  color: white;
  border: none;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 0.5rem;
}

.lesson-card button:hover {
  background: #2c3e50;
}