.math-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    max-width: 600px;
    margin: 30px auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }
  
  .math-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 20px 0;
    font-weight: 600;
  }
  
  .math-question-box {
    font-size: 28px;
    font-weight: bold;
    background: #2563eb;
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
  }
  
  #math-answer {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
  }
  
  #submit-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background: #16a34a;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }
  
  #submit-btn:hover {
    background: #15803d;
  }
  
  .math-seo-content {
    margin-top: 80px;
  }
  
  .math-steps li {
    margin-top: 20px;
    margin-left: 20px;
    margin-bottom: 8px;
  }
  