/* Inner Page Styles: Custom Software Solutions */
.inner-hero {
  padding: 150px 40px 100px;
  background-color: var(--light-bg);
  color: var(--text-dark);
  text-align: center;
}

.inner-hero h1 {
  color: var(--text-dark);
}

.overlap-card-section {
  position: relative;
  margin-top: -60px;
  z-index: 10;
  padding: 0 20px;
}

.overlap-card {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 60px;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: var(--box-shadow);
  color: var(--text-dark);
}

/* Alternate Content Blocks */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.content-block.reverse {
  direction: rtl;
}

.content-block.reverse > * {
  direction: ltr;
}

.content-block-img img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

/* FAQ Section */
.faq-section {
  background-color: #fff;
}

.faq-accordion details {
  margin-bottom: 10px;
}

.faq-accordion summary {
  background-color: var(--primary-color);
  color: white;
  padding: 15px 20px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none; /* Hide default arrow */
}

.faq-accordion summary::-webkit-details-marker {
  display: none;
}

.faq-accordion .faq-content {
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-top: none;
}

.faq-accordion summary .icon {
  font-size: 0; /* Hide the hardcoded + */
}

.faq-accordion details[open] summary .icon::after {
  content: "-";
  font-size: 1.5rem;
  line-height: 1;
}

.faq-accordion details:not([open]) summary .icon::after {
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .content-block {
    grid-template-columns: 1fr;
  }
  .content-block.reverse {
    direction: ltr;
  }
}
