/* General Styles */
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: #FFF; 
  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;
}



.bold {
  font-weight: bold;
}

.question {
  font-weight: bold;
  color: #000000; /* You can set a different color or style for the question numbers */
}




/* Solution Section */
.solution {
  margin-top: 30px;
  background-color: #F9F9F9; /* Light gray */
  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;
  }
}
