body {
  padding-top: 70px;
  padding-bottom: 30px;
}

.theme-dropdown .dropdown-menu {
  position: static;
  display: block;
  margin-bottom: 20px;
}

.theme-showcase > p > .btn {
  margin: 5px 0;
}

.theme-showcase .navbar .container {
  width: auto;
}

/* Payment completion section styles */
.secondary-heading {
  font-size: 28px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: center;
}

.secondary-heading.small {
  font-size: 24px;
}

.body-paragraph {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.body-paragraph.margin {
  margin-top: 15px;
  margin-bottom: 15px;
}

.body-paragraph.large {
  font-size: 18px;
}

.text-link {
  color: #428bca;
  text-decoration: none;
  font-weight: 500;
}

.text-link:hover {
  color: #2a6496;
  text-decoration: underline;
}

/* Payment instruction box */
.payment-instruction-box {
  background-color: #fff3cd;
  border: 1px solid #ffc107;
  border-left: 4px solid #ffc107;
  border-radius: 4px;
  padding: 15px 20px;
  margin: 20px auto;
  max-width: 600px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Payment fee display */
.payment-fee-container {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 15px;
  margin: 15px 0;
  text-align: center;
}

.payment-fee-label {
  font-size: 14px;
  color: #6c757d;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 5px;
}

.payment-fee-amount {
  font-size: 24px;
  color: #28a745;
  font-weight: 700;
}

/* Large buttons */
.large-button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 10px 0;
  width: 100%;
  max-width: 400px;
}

.large-button.payment {
  background-color: #28a745;
  color: #fff;
  border: none;
}

.large-button.payment:hover {
  background-color: #218838;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.large-button.save {
  background-color: #17a2b8;
  color: #fff;
}

.large-button.save:hover {
  background-color: #138496;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.completion-button-container {
  text-align: center;
  margin-top: 20px;
}

/* Grid layout improvements */
.w-layout-grid.grid-6 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .w-layout-grid.grid-6 {
    grid-template-columns: 1fr;
  }

  .large-button {
    width: 100%;
    max-width: none;
  }
}
