body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    background: #f7f9fc;
    color: #333;
  }
  
  .hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(to right, #007bff, #00c6ff);
    color: white;
  }
  
  .hero h1 {
    margin: 0;
    font-size: 48px;
  }
  
  .form-section, .gallery {
    padding: 40px 20px;
    max-width: 800px;
    margin: auto;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  input, select, button {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  button {
    background-color: #00c6ff;
    color: white;
    border: none;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #0099cc;
  }
  
  #confirmation {
    margin-top: 20px;
    font-weight: bold;
    color: green;
  }
  
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
  
  .gallery-item img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
  }
  
  .gallery-item p {
    text-align: center;
    margin-top: 10px;
  }
  