.stripe-card {
  max-width: 600px;
  margin: 2rem auto;
  padding: 30px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid #084537;
  text-align: center;
  box-sizing: border-box;
}
.stripe-card h2 {
  margin-bottom: 10px;
  color: #04211A;
  font-weight: bold;
}
.stripe-card p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}
.stripe-card select {
  width: 100%;
  padding: 12px 18px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 25px;
  background: #fff;
  color: #04211A;
  cursor: pointer;
}
.stripe-checkbox {
  text-align: left;
  font-size: 1.1rem;
  color: #333 !important;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}
.stripe-checkbox input {
  margin: 2px 8px 0 0;
}
.stripe-checkbox a {
  color: #c2380c;
  font-weight: 600;
  text-decoration: underline !important;
}
.stripe-card button {
  background-color: #c2380c;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.stripe-card button:hover {
  background-color: #04211A;
}