/* ===== BASE STYLES ===== */
body {
    font-family: 'Segoe UI', Roboto, -apple-system, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
  }
  
  /* ===== TYPOGRAPHY HIERARCHY ===== */
  h1 {
    font-size: 2.4rem;
    color: #2c3e50;
    margin: 30px 0 20px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
  }
  
  h2 {
    font-size: 1.8rem;
    color: #3498db;
    margin: 25px 0 15px;
    padding-left: 10px;
    border-left: 4px solid #3498db;
  }
  
  h3 {
    font-size: 1.4rem;
    color: #27ae60;
    margin: 20px 0 12px;
  }
  
  h4 {
    font-size: 1.2rem;
    color: #e67e22;
    margin: 15px 0 10px;
  }
  
  /* ===== COLLAPSIBLE SYSTEM ===== */
  .collapsible-header {
    cursor: pointer;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 6px;
    margin: 8px 0;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    border: 1px solid #e0e0e0;
  }
  
  .collapsible-header:hover {
    background: #e9ecef;
  }
  
  .collapsible-header.active {
    background: #e3f2fd;
    border-color: #bbdefb;
  }
  
  .icon {
    margin-right: 12px;
    transition: transform 0.2s;
    font-size: 14px;
    min-width: 14px;
    text-align: center;
  }
  
  .collapsible-header.active .icon {
    transform: rotate(90deg);
    color: #1976d2;
  }
  
  .collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 30px;
    margin-left: 10px;
    border-left: 2px solid #e0e0e0;
  }
  
  .collapsible-content.expanded {
    max-height: 5000px; /* Adjust based on content */
    padding-bottom: 15px;
  }
  
  /* ===== CONTENT STYLES ===== */
  p {
    margin: 12px 0;
    padding-left: 8px;
  }
  
  ul, ol {
    margin: 15px 0;
    padding-left: 30px;
  }
  
  li {
    margin: 8px 0;
  }
  
  blockquote {
    border-left: 4px solid #3498db;
    padding: 10px 20px;
    margin: 15px 0;
    background: #f8f9fa;
    font-style: italic;
    color: #555;
  }
  
  a {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.2s;
  }
  
  a:hover {
    color: #1a5276;
    text-decoration: underline;
  }
  
  /* ===== SPECIAL ELEMENTS ===== */
  .checklist {
    padding-left: 0;
    list-style: none;
  }
  
  .checklist-item {
    position: relative;
    padding-left: 25px;
    margin: 8px 0;
  }
  
  .checklist-item:before {
    content: '✓';
    position: absolute;
    left: 5px;
    color: #27ae60;
    font-weight: bold;
  }
  
  .teaching-points {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 6px;
    margin: 15px 0;
  }
  
  /* ===== RESPONSIVE ADJUSTMENTS ===== */
  @media (max-width: 768px) {
    body {
      padding: 15px;
      font-size: 0.95rem;
    }
    
    h1 {
      font-size: 2rem;
    }
    
    h2 {
      font-size: 1.6rem;
    }
    
    .collapsible-header {
      padding: 10px 12px;
    }
    
    .collapsible-content {
      padding-left: 20px;
    }
  }
  
  /* ===== UTILITY CLASSES ===== */
  .indent {
    padding-left: 20px;
  }
  
  .highlight {
    background: #fffde7;
    padding: 2px 4px;
    border-radius: 3px;
  }
  h1:first-of-type {
    position: relative;
    padding-bottom: 20px;
    margin: 40px 0;
    text-align: center;
    font-size: 2.6rem;
  }
  h1:first-of-type::after {
    content: "";
    display: block;
    width: 120px;
    height: 3px;
    background: #3498db; /* Your accent color */
    margin: 20px auto 0;
  }
  
/* Your delicATE color */
  
.quote-banner  {
  background: linear-gradient(135deg, #0078d4, #004e8c);
    padding: 3rem 1rem;
    margin: 2rem 0;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 0.3rem 0.5rem; /* Reduced from 3rem/2rem */
    
}
  
.quote-line-1 {
  color: #f0f0f0;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.quote-line-2 {
  color: rgba(240,240,240,0.9);
  font-size: 1.4rem;
  font-style: italic;
  margin-top: 0.6rem;
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .quote-line-1 { font-size: 1.8rem; }
  .quote-line-2 { font-size: 1.2rem; }
}
.light-quote {
  text-align: center;
  margin: 0 auto; /* Ensures proper centering */
}

