/* Inner Page Styles: Website Content Strategy */
.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);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--box-shadow);
  text-align: left;
  border-top: 4px solid var(--primary-color);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.25rem;
}

.service-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Process List */
.process-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.process-list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 25px;
  line-height: 1.8;
  color: var(--text-muted);
}

.process-list li::before {
  content: '\f0a4'; /* FontAwesome right arrow */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* 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 */
  border-radius: 4px;
}

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

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

.faq-accordion summary .icon {
  font-size: 0;
}

.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;
}
