body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFEDEB;
    color: #4A4A4A;
  }
  
  header {
    background-color: #FF6F61;
    padding: 30px;
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-bottom: 5px solid #FFB6B3;
  }
  
  header img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #FFB6B3;
  }
  
  section {
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  h1, h2 {
    margin: 0;
  }
  
  h2 {
    color: #FF6F61;
  }
  
  p, ul {
    font-size: 1.1em;
    line-height: 1.6;
  }
  
  ul {
    list-style: none;
    padding: 0;
  }
  
  li {
    padding: 15px;
    margin-bottom: 15px;
    background-color: #FFB6B3;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  footer {
    background-color: #FF6F61;
    padding: 15px;
    text-align: center;
    color: white;
    border-top: 5px solid #FFB6B3;
    margin-top: 20px;
  }
  
  footer a {
    color: white;
    text-decoration: none;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  