body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #fdfcfb, #e2d1c3);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  text-align: center;
  max-width: 600px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 1.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 2rem;
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.contact-btn,
.donate-btn {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-btn {
  background-color: #007BFF;
  color: white;
}

.donate-btn {
  background-color: #FFC107;
  color: black;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 2rem;
  border: 1px solid #888;
  width: 80%;
  max-width: 400px;
  border-radius: 1rem;
  text-align: center;
}

.close-btn {
  color: #aaa;
  float: right;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
}

/* Payment Page Styles */
.payment-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.payment-options {
  display: none;
  flex-direction: column;
  align-items: center;
}

.back-btn {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: white;
  color: black;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.5rem;
}

.image-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.image-container img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 20px white;
}

.close-image {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.2rem;
  background: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
}

/* Method buttons' styling */
.payment-options button {
  font-size: 1.2rem;
  padding: 1rem 2rem;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 0.5rem;
  margin: 0.5rem 0;
  cursor: pointer;
  transition: background-color 0.3s;
}

.payment-options button:hover {
  background-color: #218838;
}

.payment-options button:focus {
  outline: none;
}

.showmethod {
  background-color: #ffc107;
  font-size: 1.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.showmethod:hover {
  background-color: #e0a800;
}

.donate-text {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: white;
}
