/* Overall Structure */
.container {
    max-width: 700px; /* Limit width for readability */
    margin: 3rem auto; /* Center content with some vertical spacing */
    padding: 2rem;     /* Add padding around the content*/
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  }
  
  /* Headings */
  h1.text-3xl {
    font-weight: 600;  /* Semi-bold heading */
    margin-bottom: 1.5rem;
  }
  
  h2 { 
    font-weight: 500;  /* Slightly lighter heading */
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  /* General Text */
  p {
    line-height: 1.6;  /* Increased line spacing for readability */
    margin-bottom: 1.25rem;
  }
  



  