/* General Styles */

/* #fffcef for bg */
body {
    font-family: 'Arial', sans-serif;
    background-color: #364156; 
    color: #11151C; 
    margin: 0;
    padding: 0;
  }
  
  .container {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    background-color: #ffffff; 
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
  }
  
  /* Header Section */
  header h1 {
    font-size: 2.5em;
    color: #D66853; /* Bright orange-red heading */
    text-align: center;
    margin-bottom: 10px;
  }
  
  header .subtitle {
    font-size: 1.2em;
    text-align: center;
    color: #7D4E57; /* Muted rose */
    margin-bottom: 30px;
  }
  
  /* Question Section */
  .question h2 {
    font-size: 2em;
    color: #D66853; /* Bright orange-red */
    margin-bottom: 15px;
    border-bottom: 2px solid #D66853; 
    padding-bottom: 5px;
  }
  
  .question p {
    font-size: 1.2em;
    color: #000000; 
    margin-bottom: 20px;
  }
  
  
  
  /* Solution Section */
  .solution {
    margin-top: 30px;
    background-color: #F9F9F9;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #DDD;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  }
  
  .solution-content {
    margin-top: 10px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    header h1 {
      font-size: 2em;
    }
  
    header .subtitle {
      font-size: 1em;
    }
  
    .question h2 {
      font-size: 1.8em;
    }
  
    .question p {
      font-size: 1.1em;
    }
  
    .solution summary {
      font-size: 1.3em;
    }
  }
  