/* Reset & body */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
  }
  
  body {
    background-color: #f5f7fb;
    color: #1e293b;
    line-height: 1.6;
  }
  
  /* Header */
  header {
    background-color: #003366;
    color: white;
    padding: 15px 20px;
    text-align: center;
  }
  header h1 {
    font-size: 24px;
    font-weight: 700;
  }
  
  /* Page Container */
  .container {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 20px;
  }
  
  /* Section Styling */
  section {
    margin-bottom: 40px;
  }
  section h2 {
    font-size: 22px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 15px;
    text-align: center;
  }
  section p {
    font-size: 16px;
    color: #1e293b;
    line-height: 1.8;
    text-align: justify;
  }
  section p strong {
    color: #003366; /* highlights */
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    header h1 {
      font-size: 20px;
    }
    section h2 {
      font-size: 20px;
    }
    section p {
      font-size: 15px;
    }
  }
  