/* Get Started Page Enhancements */

.get_started {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.get_start {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.option-box {
  flex: 1;
  text-align: center;
  padding: 20px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fff;
  position: relative;
  overflow: hidden;
  min-width: 120px; /* Prevent squishing */
}

.option-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border-color: #00539b;
}

.option-box.active {
  border-color: #00539b;
  background-color: #f0f7ff;
}

.option-box img {
  width: auto;
  height: 50px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.option-box:hover img {
  transform: scale(1.1);
}

.option-box h6 {
  font-weight: 700;
  color: #333;
  margin: 0;
  font-size: 16px;
}

.persona-section {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 30px;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.persona-section h5 {
  color: #00539b;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: "Museo Slab 700", sans-serif;
}

.persona-section p {
  color: #666;
  line-height: 1.6;
}

.credit-box {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #00539b;
  margin-top: 20px;
}

.credit-box ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.credit-box li {
  margin-bottom: 8px;
  color: #555;
}

/* Custom Radio Buttons */
input[type="radio"] {
  accent-color: #00539b;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  cursor: pointer;
}

label {
  cursor: pointer;
  font-weight: 500;
  color: #333;
}

/* Form Controls */
input.form-control,
input[type="text"].form-control,
input[type="email"].form-control,
input[type="tel"].form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: #222;
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input.form-control:focus,
input[type="text"].form-control:focus,
input[type="email"].form-control:focus,
input[type="tel"].form-control:focus {
  border-color: #00539b;
  box-shadow: 0 0 0 3px rgba(0, 83, 155, 0.2);
  outline: none;
}

/* Custom Checkbox */
input[type="checkbox"] {
  accent-color: #00539b;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  cursor: pointer;
}

/* Submit Button */
#createAccountBtn {
  margin-top: 30px;
  padding: 15px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  background: linear-gradient(to right, #00539b, #0075ce);
  border: none;
  box-shadow: 0 5px 15px rgba(0, 83, 155, 0.3);
  transition: all 0.3s ease;
}

#createAccountBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 83, 155, 0.4);
}

.specializations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  margin: 20px 0;
}

.specializations label {
  display: flex;
  align-items: center;
}
.get_started h6 {
    font-size: 20px;
    font-weight: 700;

}

/* Responsive Styles */
@media (max-width: 991px) {
  .get_start {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .get_started {
    padding: 50px 0;
  }

  .get_start {
    padding: 20px;
  }

  .option-box {
    flex: 0 0 45%; /* 2 per row */
    margin-bottom: 10px;
  }
}

@media (max-width: 575px) {
  .option-box {
    flex: 0 0 100%; /* 1 per row */
  }

  .persona-section {
    padding: 20px;
  }
}
