.page-content {
  position: relative;
  padding: 180px 0 200px;
  text-align: center;
  color: white;
  overflow: hidden;
}

.page-content .background-image {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.page-content .background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
}

.page-content h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.page-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.section-title p {
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Expanded Content Section */
.expanded-content {
  padding: 80px 0;
  background-color: var(--primary-light);
  border-radius: 20px;
  margin-top: 40px;
}

.expanded-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.expanded-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  text-align: center;
}

.expanded-card:hover {
  transform: translateY(-5px);
}

.expanded-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 28px;
}

.expanded-card h4 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

/* Stats Section */

/* ================================ */

.stats-section {
  padding: 80px 0;
  background-color: var(--white);
}

.stats-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.stats-content h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.stats-content p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 30px;
  line-height: 1.7;
}

.read-more-btn {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  background-color: var(--primary-light);
  border-radius: 10px;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}

.stat-text {
  font-size: 1.1rem;
  color: var(--dark);
  font-weight: 600;
}

/* Process Section */
.process {
  padding: 80px 0;
  background-color: var(--light);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 250px;
  text-align: center;
  padding: 0 20px;
  margin-bottom: 30px;
}

.step-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 30px;
}

/* Benefits Section */
.benefits {
  padding: 80px 0;
  background-color: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.benefit-card {
  background-color: var(--light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 24px;
}

/* Industries Section */
.industries {
  padding: 80px 0;
  background-color: var(--light);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.industry-card {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
}

.industry-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: white;
  font-size: 20px;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background-color: var(--light);
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.faq-question {
  background-color: white;
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(1, 118, 211, 0.05);
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  background-color: white;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 20px;
}

/* Overview Section */
.overview-section {
  background-color: #f9fafc;
  padding: 100px 20px;
}

.overview-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
  flex-wrap: wrap;
}

.overview-image {
  flex: 1;
  text-align: center;
}

.overview-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  transition: transform 0.4s ease;
}

.overview-image img:hover {
  transform: scale(1.05);
}

.overview-content {
  flex: 1;
  max-width: 600px;
}

.overview-content h2 {
  font-size: 2.2rem;
  color: #000;
  position: relative;
  font-weight: 700;
  margin-bottom: 20px;
}

.overview-content h2::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background: #1a237e;
  bottom: -10px;
  left: 0;
}

.overview-content p {
  color: #222;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-top: 25px;
}

/* Responsive */
@media (max-width: 992px) {
  .overview-container {
    flex-direction: column;
    text-align: center;
  }

  .overview-content h2::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .overview-content {
    max-width: 100%;
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .page-content {
    padding: 130px 0 80px;
  }

  .page-content h1 {
    font-size: 2.2rem;
  }

  .process-steps {
    flex-direction: column;
  }

  .step {
    min-width: 100%;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-content {
    text-align: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-content h1 {
    font-size: 1.8rem;
  }

  .page-content p {
    font-size: 1rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .expanded-grid {
    grid-template-columns: 1fr;
  }

  .stats-content h2 {
    font-size: 2rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}
