@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

body {
  font-family: "Inter", sans-serif;
}
.tool-card {
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: white;
}
.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #3b82f6;
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
/* Accordion Styles */
.accordion-item {
  border-bottom: 1px solid #e5e7eb;
  overflow: hidden;
}
.accordion-header {
  padding: 1.5rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
.accordion-header:hover {
  color: #3b82f6;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0;
}
.accordion-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}
.accordion-item.active .accordion-content {
  max-height: 500px;
  padding-bottom: 1.5rem;
}
/* Mobile menu animation */
#mobile-menu {
  transition: all 0.3s ease-in-out;
}
