.rich-text-9754 {
  max-width: 1200px;
  margin: 0 auto 50px;
  padding: 0 20px;
  line-height: 1.8;
  color: #444;
}

.tools-grid-9754 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.tool-card-9754 {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 20px 16px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  color: #111827;
}

.tool-card-9754:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 24px rgba(139, 92, 246, 0.25);
  border-color: #8b5cf6;
}

.tool-card-9754 h3 {
  font-size: 1rem;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tool-card-9754 i {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: white;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite ease-in-out;
  font-size: 0.85rem;
  box-shadow: 0 0 8px rgba(139, 92, 246, 0.4);
}

.tool-card-9754 p {
  margin: 0;
  font-size: 0.85rem;
  color: #4b5563;
  line-height: 1.5;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .rich-text-9754 h2 { font-size: 1.4rem; }
  .rich-text-9754 p { font-size: 1rem; }
  .tool-card-9754 h3 { font-size: 0.95rem; }
}

@media screen and (max-width: 480px) {
  .tool-card-9754 h3 { font-size: 0.9rem; }
}


/* Optional: glowing animation */
@keyframes glowFade {
  0% {
    box-shadow: 0 0 10px #f53844, 0 0 20px #42378f;
  }
  100% {
    box-shadow: 0 0 20px #f53844, 0 0 35px #42378f;
  }
}

.tool-section-heading-9754 {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  color: #2c3e50;
  position: relative;
  margin: 0 auto 24px;
  display: inline-block;
  padding-bottom: 10px;
}

.tool-section-heading-9754 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.tool-section-heading-9754 img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  display: inline-block;
}

.tool-section-heading-9754::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: linear-gradient(to right, #e74c3c, #f39c12);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.tool-section-heading-9754:hover::after {
  width: 100%;
}