.dosha-form {
  max-width: 100%;
  margin: auto;
}


.dosha-option {
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
}

.dosha-option img {
  width: 30px;
  border-radius: 8px;
}

.dosha-cta {
  background: #2e7d32;
  color: #fff;
  padding: 12px 25px;
  display: inline-block;
  margin-top: 15px;
  text-decoration: none;
  border-radius: 6px;
}

.dosha-form h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 20px;
}

.dosha-form input[type="text"] {
    margin-bottom: 20px;
}

.dosha-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .dosha-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 767px) {
  .dosha-grid {
    grid-template-columns: 1fr !important;
    display: grid !important;
  }
}