body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0 15px;
    background-color: #f4f4f4;
    color: #333;
  }
  
  header {
    background: #004080;
    color: white;
    padding: 20px 10px;
    text-align: center;
    position: relative; /* Enables absolute positioning inside */
  }
  
  header h1 {
    margin: 0;
  }
  
  section {
    background: white;
    margin: 20px 0;
    padding: 20px;
    border-radius: 10px;
  }
  
  section h2 {
    border-bottom: 2px solid #004080;
    padding-bottom: 5px;
    color: #004080;
  }
  
  ul {
    list-style-type: square;
    margin-left: 20px;
  }
  
  .photo-grid .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 15px;
  }
  
  .photo-grid img {
    width: 100%;
    border-radius: 8px;
  }
  
  footer {
    background: #004080;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 30px;
  }
  
div {
    position: absolute;
    top: 6%;
    right: -1.5%;
}