/* Services Page Styles */

body {
  font-family: "NotionInter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  isolation: auto;
}

/* Ensure proper stacking context for blend modes */
main {
  isolation: auto;
  position: relative;
}

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

.service-toggle-btn.active,
.service-toggle-btn[aria-selected="true"] {
  background-color: white;
}
/* Remove box-shadow from service images */
img {
  box-shadow: none !important;
}

.service-content-wrapper {
  display: none;
}

.service-content-wrapper.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.accordion-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s ease-in-out, padding-top 0.7s ease-in-out;
  padding-top: 0;
}

.accordion-item.active .accordion-details {
  max-height: 2500px; /* Increased max-height for very long content */
  padding-top: 2rem; /* mt-8 */
}

.accordion-item.active .accordion-arrow {
  transform: rotate(180deg);
}

.accordion-arrow {
  transition: transform 0.3s ease;
}

/* Prose styles for detailed product content */
.prose h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.prose h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.prose p {
  margin-bottom: 1rem;
  color: #4b5563;
}

.prose ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

/* Hero section heading - black text */
.hero-heading {
  color: #000000;
}

/* Hero section description - black text */
.hero-description {
  color: #000000;
}
