body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #1e1e1e;
    color: #f5f5f5;
  }
  
  .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 40px;
  }
  
  h1 {
    font-size: 42px;
    margin-bottom: 40px;
  }
  
  h2 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
  }
  
  p {
    font-size: 15px;
    line-height: 1.7;
    color: #d6d6d6;
  }
  
  a {
    color: #9bbcff;
    text-decoration: none;
  }
  
  .sep {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 40px 0;
  }
  .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery img {
  width: 100%;
  border-radius: 8px;
}
