/* Base (page-only) */
.services-page {
  padding: 48px 6%;
}

/* HERO (same style as Events hero, blue gradient) */
.services-hero {
  background: linear-gradient(90deg, #0616c7, #1f66d8, #1aa6a8);
  padding: 74px 6%;
  color: #fff;
}

.services-hero-inner {
  max-width: 980px;
}

.services-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 10px;
}

.services-hero p {
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.95;
  margin: 0;
}

/* Accordion container */
.services-section {
  margin-top: 40px;
}

.services-accordion {
  border-top: 1px solid rgba(0,0,0,0.08);
}

/* Accordion item */
.acc-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* Header row */
.acc-header {
  width: 100%;
  background: #ffffff;
  border: 0;
  padding: 22px 10px;
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
}

/* Circle arrow like your inspiration */
.acc-icon {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 2px solid rgba(10, 70, 194, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #0a46c2;
  flex: 0 0 auto;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.acc-title {
  font-size: 1.35rem;
  font-weight: 500;
  color: #0a1a2a;
}

/* Panel (collapsible) */
.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  background: #ffffff;
}

.acc-content {
  padding: 0 82px 26px;
  color: #1c2b3a;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* OPEN state: turns blue + shows description */
.acc-item.open .acc-header {
  background: linear-gradient(90deg, #0616c7, #1f66d8, #1aa6a8);;
}

.acc-item.open .acc-title {
  color: #ffffff;
}

.acc-item.open .acc-icon {
  border-color: rgba(255,255,255,0.65);
  color: #ffffff;
  transform: rotate(180deg);
}

/* Expand panel when open */
.acc-item.open .acc-panel {
  max-height: 300px; /* safe for short paragraphs */
  background: linear-gradient(90deg, #0616c7, #1f66d8, #1aa6a8);;
}

.acc-item.open .acc-content {
  color: rgba(255,255,255,0.95);
}

/* Responsive */
@media (max-width: 768px) {
  .services-hero h1 {
    font-size: 2.2rem;
  }

  .acc-title {
    font-size: 1.1rem;
  }

  .acc-content {
    padding: 0 20px 22px;
    font-size: 1rem;
  }

  .acc-icon {
    width: 46px;
    height: 46px;
  }
}

