body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background-color: #f7f9fc;
    color: #333;
  }
  
  header {
    background-image: url('images/header.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 40px 20px;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  }
  
  main {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }
  
  h2 {
    color: #004c97;
  }
  
  a {
    color: #007bff;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  ul {
    padding-left: 20px;
  }
  
  .highlight {
    font-weight: bold;
    color: #004c97;
  }
  
  footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    color: #666;
  }

  .logo-footer {
    margin-top: 10px;
    width: 120px;
    opacity: 0.9;
  }
  
  