html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.service-card {
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(46, 125, 50, 0.2);
}

.btn-cta {
  transition: all 0.3s ease;
}

.btn-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(46, 125, 50, 0.3);
}

.privacy-policy-section-box {
  background: white;
  border-left: 4px solid #2e7d32;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Touch target minimum size */
button,
a {
  min-height: 44px;
}

/* Focus styles for accessibility */
*:focus-visible {
  outline: 2px solid #2e7d32;
  outline-offset: 2px;
}

/* Social Media Links */
.social-link {
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px);
}

.instagram-link {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

.instagram-link:hover {
  opacity: 0.9;
  box-shadow: 0 8px 20px rgba(131, 58, 180, 0.4);
}

/* Footer Instagram - Gray default, gradient on hover */
.instagram-footer {
  background: #4b5563;
  transition: all 0.3s ease;
}

.instagram-footer:hover {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(131, 58, 180, 0.4);
}

/* Responsive Spacing */
@media (max-width: 640px) {
  .service-card {
    padding: 1.25rem;
  }

  .service-card > div:first-child {
    height: 6rem;
    margin-bottom: 0.75rem;
  }

  .service-card h3 {
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }

  #services {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
