/* Reset and base styles */
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #371852;
  display: flex;
  flex-direction: column;
}

/* Navigation bar */
.logo-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-nav .logo {
  height: 100px;
}

/* Main content */
.main-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Form container */
.form-container {
  width: 100%;
  max-width: 500px;
  padding: 20px;
  background-color: #b39ba1;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333333;
}

.form-container input,
.form-container textarea {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-size: 16px;
}

.form-container textarea {
  resize: vertical;
  min-height: 100px;
}

/* Button group */
.button-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.button-group button {
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.pay-button {
  background-color: #133b37;
  color: white;
}

.pay-button:hover {
  background-color: #4c8b85;
}

.whatsapp-button {
  background-color: #8b0000;
  color: #ffffff;
}

.whatsapp-button:hover {
  background-color: #c95c5c;
}

/* Footer */
.site-footer {
  background-color: #f1f1f1;
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
  color: black;
}

/* Responsive design */
@media (min-width: 600px) {
  .button-group {
    flex-direction: row;
    justify-content: space-between;
  }

  .button-group button {
    width: 48%;
  }
}
