  body {
      margin: 0;
      font-family: Arial, sans-serif;
      scroll-behavior: smooth;
    }
    section {
      padding: 20px 20px;
      max-width: 1000px;
      margin: 0 auto;
    }
    header {
      background: url('hero.jpg') no-repeat center center/cover;
      height: 50vh;
      color: black;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      text-align: center;
    }
    header h1 {
      font-size: 3em;
      margin: 0;
    }
    header p {
      font-size: 1.2em;
      margin-bottom: 20px;
    }
    .btn {
      background-color: #ff4d4d;
      color: white;
      padding: 12px 24px;
      text-decoration: none;
      border-radius: 5px;
    }
    .portfolio {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 10px;
    }
    .portfolio img {
      width: 100%;
      height: auto;
      border-radius: 10px;
    }
    form {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    input, textarea {
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
    }
    footer {
      background: #f4f4f4;
      text-align: center;
      padding: 20px;
    }

      .lightbox {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }

    .lightbox img {
      max-width: 100%;
      max-height: 100%;
      border-radius: 10px;
    }

     .lightbox p {
      color: white;
      font-size: 1rem;
      text-align: center;
    }


    .lightbox:target {
      display: flex;
    }

     .lightbox a {
      max-width: 80%;
      max-height: 80%;
    }

    #pay{
      font-weight: bold;
      text-align: center;
    }