/* Custom styles for Dr. Benny Fair's website */

/* Make images more professional */
img {
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  margin: 2rem 0;
}

/* Better spacing for content */
.content {
  line-height: 1.8;
}

.content h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 2px solid #e5e7eb;
}

.content h2:first-of-type {
  border-top: none;
  margin-top: 0;
}

.content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

/* Call to action styling */
a[href^="tel:"] {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}

a[href^="tel:"]:hover {
  border-bottom-color: #2563eb;
}

/* Blockquote styling */
blockquote {
  border-left: 4px solid #3b82f6;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #4b5563;
  background: #f9fafb;
  padding: 1rem 1.5rem;
  border-radius: 0 0.5rem 0.5rem 0;
}

/* Better hr styling */
hr {
  border: none;
  border-top: 2px solid #e5e7eb;
  margin: 3rem 0;
}

/* Responsive images */
@media (max-width: 768px) {
  img {
    margin: 1rem 0;
  }
}
