body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f4f9ff;
  color: #2c3e50;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  width: 90%;
  max-width: 500px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  padding: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.logo .icon {
  font-size: 2rem;
}

h1 {
  margin: 0;
  font-size: 1.8rem;
  color: #007BFF;
}

h2 {
  margin-top: 2rem;
  font-size: 1.4rem;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

button {
  padding: 1rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 12px;
  background: #007BFF;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #0056b3;
}

footer {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #888;
}
.logim {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}


    .container {
      max-width: 800px;
      margin: auto;
      padding: 20px;
      background: white;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    header .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

  

    footer {
      margin-top: 20px;
      text-align: center;
      font-size: 14px;
      color: #666;
    }

    .image-buttons {
      text-align: center;
      margin: 30px 0;
    }

    .image-buttons button {
      padding: 10px 20px;
      margin: 10px;
      font-size: 16px;
      cursor: pointer;
    }

    /* Modal */
    .modal {
      display: none;
      position: fixed;
      z-index: 100;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background: rgba(0,0,0,0.8);
    }

    .modal-content {
      margin: 10% auto;
      display: block;
      width: 80%;
      max-width: 600px;
      border-radius: 8px;
    }

    .close {
      position: absolute;
      top: 30px;
      right: 50px;
      color: white;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
    }

    @media(max-width: 600px) {
      .modal-content {
        width: 95%;
      }
    }
  