* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: Georgia, serif;
    background-color: #f7f5f2;
    color: #2c2c2c;
    line-height: 1.6;
    padding-bottom: 40px;
  }

  header {
    background-color: #1e3d59;
    color: #ffffff;
    padding: 30px 20px;
    border-bottom: 3px solid #ccc5b9;
  }
  
  .header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .header-content img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  }
  
  .header-text {
    text-align: left;
  }
  
  .header-text h1 {
    font-size: 2em;
    margin-bottom: 5px;
  }
  
  .header-text p {
    font-size: 1.1em;
    font-style: italic;
  }

  nav {
    background-color: #e9e4dc;
    text-align: center;
    padding: 15px;
    border-bottom: 1px solid #d6ccc2;
  }
  
  nav a {
    color: #1e3d59;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  nav a:hover {
    background-color: #d6ccc2;
  }
  

  main {
    max-width: 850px;
    margin: 40px auto;
    padding: 0 20px;
  }
  
  section {
    background-color: #ffffff;
    border: 1px solid #ddd;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  }
  
  h2 {
    font-size: 1.4em;
    color: #1e3d59;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
    margin-bottom: 15px;
  }
  
  ul {
    list-style: none;
    padding: 0;
  }
  
  ul li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 1em;
  }

  ul li img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 6px;
    margin: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: block;
  }

  a {
    color: #264653;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }

  footer {
    background-color: #1e3d59;
    color: #ffffff;
    text-align: center;
    font-size: 0.9em;
    padding: 20px;
    margin-top: 40px;
  }
  