/* Basic page style resets */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
  }
  
  body {
    background-color: #F0F2F5;
    color: #333333;
    line-height: 1.6;
  }
  
  /* Container */
  .wrapper {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
  }
  
  .logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
  }
  
  .content {
    max-width: 800px;
    padding: 2rem 2.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  /* Center title and image */
  .title, .illustration {
    text-align: center;
  }
  
  .title {
    color: #202A44;
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }
  
  .illustration {
    max-width: 80%;
    height: auto;
    margin: 2rem auto;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform .2s;
  }
  
  .illustration:hover {
    transform: scale(1.05);
  }
  
  /* Typography and layout */
  .about h2, .about h3 {
    color: #202A44;
    margin-top: 1.5rem;
    text-align: left;
  }
  
  .about p, .about ul {
    margin: 1rem 0;
    color: #4A4A4A;
    line-height: 1.8;
    text-align: left;
  }
  
  .about ul {
    list-style-type: disc;
    padding-left: 1.5rem;
  }
  
  /* Table */
  table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
  }
  
  th {
      text-align: left;
  }
  
  th, td {
    word-wrap: break-word;
    border: 1px solid black;
    padding: 5px;
  }
  
  /* Footer */
  .footer {
    width: 100%;
    padding: 1rem 0;
    background: #202A44;
    text-align: center;
    border-top: 3px solid #4CAF50;
    color: #ffffff;
    margin-top: 2rem;
  }
  
  .footer .links a {
    color: #4CAF50;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  
  .footer .links a:hover {
    text-decoration: underline;
  }