/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #2c3e50;
    background-color: #ecf0f1;
    line-height: 1.6;
  }
  
  header, footer {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 1em 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  header nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #ecf0f1;
    font-size: 18px;
  }
  
  header nav a:hover {
    text-decoration: underline;
  }
  
  /* Section Styles */
  main section {
    padding: 20px;
    margin: 20px;
    border-radius: 15px;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .left-aligned {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    margin-left: 5%;
  }
  
  .right-aligned {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: start;
    margin-right: 5%;
  }
  
  .portrait {
    max-width: 200px;
    border-radius: 10px;
    margin: 10px;
  }
  
  .text {
    max-width: 600px;
    margin: 10px;
  }

  .section-header {
    text-align: center;
  }

  .center-aligned {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  /* Accessibility */
  body, p, h1, h2, ul, li {
    font-size: 18px;
  }
  
  a {
    font-size: 18px;
  }
  
  /* Footer */
  footer p {
    font-size: 14px;
  }
