* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Fira Sans", sans-serif;
  background-color: #f5f7fa;
  min-height: 100vh;
}

.top-nav {
  background: #fff;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  z-index: 1000;
}

.logo img {
  width: 90px;
}

.chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #28a745;
  color: white;
  padding: 15px 20px;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  transition: transform 0.2s ease;
}

.chat-widget:hover {
  transform: translateY(-2px);
}

.chat-icon {
  width: 20px;
  height: 20px;
}

.container {
  max-width: 800px;
  background: white;
  border-radius: 5px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 40rem;
  width: 100%;
}

.header {
  /* background: linear-gradient(135deg, #f44336, #d32f2f); */
  color: black;
  padding: 20px;
  text-align: left;
}

.banner-container {
  width: 100%;
  min-height: 100vh;
  background: url("./assets/banner image.jpg");
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background-color: rgba(255, 0, 0, 0.8); /* Red with transparency */
  background-blend-mode: multiply;
  gap: 2rem;
  background-size: cover;
  justify-content: center;
}
#otherBusinessActivity {
  display: none;
}
.left-section {
  color: white;
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.left-section h1 {
  max-width: 40rem;
  font-size: 2.5rem;
}

@media screen and (max-width: 500px) {
  .banner-container {
    flex-direction: column;
    gap: 1rem;
    min-height: max-content;
  }
  .left-section h1 {
    font-size: 2rem;
  }
}

.container-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.header p {
  font-size: 16px;
  opacity: 0.9;
}

.stepper {
  padding: 30px;
  background: #fafafa;
  border-bottom: 1px solid #e0e0e0;
}

.stepper-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.stepper-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #e0e0e0;
  z-index: 1;
}

.stepper-progress {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  background: #2196f3;
  z-index: 2;
  transition: width 0.3s ease;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  z-index: 3;
  position: relative;
  transition: all 0.3s ease;
}

.step-circle.active {
  background: #2196f3;
  color: white;
}

.step-circle.completed {
  background: #4caf50;
  color: white;
}

.form-content {
  padding: 20px;
}

.step {
  display: none;
}

.step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step h3 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 500;
  color: #333;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 400;
}

.radio-option label {
  margin: 0;
}
.checkbox-option label {
  margin: 0;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #2196f3;
}

.radio-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.radio-option input[type="radio"] {
  width: auto;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.checkbox-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.checkbox-option input[type="checkbox"] {
  width: auto;
}

.navigation {
  display: flex;
  justify-content: space-between;
  padding: 30px 40px;
  background: #fafafa;
  border-top: 1px solid #e0e0e0;
}

.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
}

.btn-primary {
  background: #2196f3;
  color: white;
}

.btn-primary:hover {
  background: #1976d2;
}

.btn-secondary {
  background: #f0f0f0;
  color: #333;
}

.btn-secondary:hover {
  background: #e0e0e0;
}

.btn-success {
  background: #4caf50;
  color: white;
}

.btn-success:hover {
  background: #45a049;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.summary-section {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 25px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
}

.summary-item:last-child {
  border-bottom: none;
  font-weight: bold;
  font-size: 18px;
  color: #f44336;
}

.cost-breakdown {
  background: white;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
  border: 1px solid #e0e0e0;
}

.license-comparison {
  margin: 40px auto;
  max-width: 1000px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.license-comparison h2 {
  background: #f44336;
  color: white;
  padding: 20px;
  margin: 0;
  text-align: center;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.comparison-table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #333;
}

.comparison-table tr:hover {
  background: #f8f9fa;
}

.footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 30px;
}

.footer p {
  margin-bottom: 10px;
  font-weight: 300;
}

.footer .highlight {
  color: #4caf50;
  font-weight: bold;
}

@media (max-width: 768px) {
  .container {
    margin: 20px auto;
    border-radius: 8px;
  }

  .form-content,
  .navigation {
    padding: 20px;
  }

  .stepper {
    padding: 20px;
  }

  .stepper-container {
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .step-circle {
    width: 30px;
    height: 30px;
    font-size: 12px;
    flex-shrink: 0;
  }

  .radio-group {
    flex-direction: column;
    gap: 10px;
  }

  .comparison-table {
    font-size: 14px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px 8px;
  }

  .chat-widget {
    padding: 12px 16px;
    font-size: 14px;
  }
}

.error-message {
  color: #f44336;
  font-size: 14px;
  margin-top: 5px;
  display: none;
}

.form-group.error input,
.form-group.error select {
  border-color: #f44336;
}

.form-group.error .error-message {
  display: block;
}
