/* Reset to clean slate */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Font Settings */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #F0F2F5;
  color: #333;
  line-height: 1.6;
  font-size: 16px;
}

/* Full-Screen Hero Section */
.hero-section {
  height: 100vh;
  background: linear-gradient(135deg, #4f74e2, #9245e2);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.overlay {
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.hero-section h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-section p {
  font-size: 22px;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #ff7a59;
  padding: 15px 40px;
  font-size: 18px;
  font-weight: bold;
  color: white;
  border: none;
  border-radius: 50px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #ff8f73;
}

/* Main Section */
.main-section {
  padding: 60px 20px;
  background-color: #fff;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #333;
}

p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #555;
}

form label {
  display: block;
  font-size: 16px;
  margin-bottom: 10px;
  text-align: left;
}

input[type="text"], input[type="email"] {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus, input[type="email"]:focus {
  border-color: #4f74e2;
}

#payButton {
  background-color: #4f74e2;
  color: white;
  padding: 15px 30px;
  font-size: 18px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#payButton:hover {
  background-color: #5f84f2;
}

#response {
  margin-top: 20px;
  font-size: 16px;
  color: red;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

footer a {
  color: #ff7a59;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
#removeButton {
  background-color: #e24f4f;
  color: white;
  padding: 15px 30px;
  font-size: 18px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#removeButton:hover {
  background-color: #f25f5f;
}
