body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 40px;
    background-color: #fff;
    color: #333;
    line-height: 1.8;
  }
  
  header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  h1 {
    font-size: 2.5em;
    color: #5c2d91;
    margin-bottom: 20px;
  }
  
  .intro {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
  }
  
  .intro-wrapper {
    display: flex;
    max-width: 900px;
    align-items: flex-start;
    gap: 30px;
  }
  
  .intro-image {
    flex: 0 0 150px;
    text-align: center;
    border-radius: 8px;
  }
  
  .intro-image img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 10px;
  }
  
  .caption {
    font-size: 0.85em;
    color: #666;
  }
  
  .intro-text {
    flex: 1;
    font-size: 1.1em;
  }
  
  .intro-text p {
    margin-bottom: 20px;
  }
  
  .buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
  }
  
  .btn {
    display: inline-block;
    background-color: #333;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1em;
    transition: background-color 0.3s;
  }
  
  .btn:hover {
    background-color: #4b2474;
  }
  
  .photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .photo-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }