.simulation-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 40px;
  max-width: 800px;
  margin: 40px auto;
}

.page-title {
  color: #f7941d; /* The specific orange from your image */
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.page-description {
  text-align: center;
  color: black;
  font-size: 1.2rem;
}

.page-tagline {
  text-align: center;
  gap: 5px;
  display: flex;
  align-items: center;

  background: #f99d1e;
  padding: 12px 24px;
  border-radius: 40px;
  color: white;
  font-size: 0.8rem;
  font-weight: 500;
  width: fit-content;

  margin-inline: auto;
}

.page-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-size: 0.95rem;
}

.form-label {
  color: #444;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

/* Custom Icon Styling */
.label-icon {
  width: 24px;
  text-align: center;
}

/* Specific colors for icons based on the image */
.icon-users {
  color: #ff6b6b;
}
.icon-money {
  color: #feca57;
}
.icon-send {
  color: #54a0ff;
}
.icon-structure {
  color: #a55eea;
}

/* The Orange Input Fields */
.form-select,
.form-control {
  border: 1px solid #f7941d; /* Orange border */
  border-radius: 8px;
  padding: 12px 15px;
  color: #666;
  font-size: 0.95rem;
  box-shadow: none; /* Remove default bootstrap glow */
  width: 100%;
}

.form-select:focus,
.form-control:focus {
  border-color: #f7941d;
  box-shadow: 0 0 0 0.25rem rgba(247, 148, 29, 0.25);
}

/* Placeholder styling hack for selects */
.form-select {
  color: #888; /* Lighter color for the "placeholder" option */
}
.form-select option:not(:first-child) {
  color: #333;
}

/* The Orange Button */
.btn-orange {
  background-color: #f7941d;
  border-color: #f7941d;
  color: white;
  width: 100%;
  padding: 12px;
  font-weight: 600;
  border-radius: 8px;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.btn-orange:hover {
  background-color: #e08313;
  border-color: #e08313;
  color: white;
}

.mb-custom {
  margin-bottom: 25px;
}
