.health-calculator {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.health-calculator__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background-color: #f8f9fa;
}

.health-calculator__icon {
  flex-shrink: 0;
}

.health-calculator__icon img {
  width: 48px;
  height: 48px;
}

.health-calculator__question {
  flex: 1;
}

.health-calculator__question h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
}

.health-calculator__toggle {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.3s ease;
}

.health-calculator__toggle:hover {
  color: #0056b3;
}

.health-calculator__caret {
  transition: transform 0.3s ease;
}

.health-calculator__caret.rotated {
  transform: rotate(180deg);
}

.health-calculator__divider {
  height: 1px;
  background-color: #e0e0e0;
}

.health-calculator__content {
  padding: 1.5rem;
}

.health-calculator__title {
  margin: 0 0 1.5rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #333;
}

.health-calculator__question-section {
  margin-bottom: 1.5rem;
}

.health-calculator__question-label {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.75rem;
}

.health-calculator__radio-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.health-calculator__radio-option {
  display: flex;
  align-items: center;
}

.health-calculator__radio-input {
  margin-right: 0.75rem;
  width: 18px;
  height: 18px;
  accent-color: #007bff;
}

.health-calculator__radio-label {
  cursor: pointer;
  font-size: 0.875rem;
  color: #333;
}

.health-calculator__radio-text {
  line-height: 1.4;
}

.health-calculator__submit-button {
  margin-top: 2rem;
}

.health-calculator__cover-card-container {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .health-calculator__header {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .health-calculator__content {
    padding: 1rem;
  }
}
