.page-content {
  position: relative;

  padding: 180px 0 200px;
  text-align: center;
  color: white;
  overflow: hidden;
}

.page-content .background-image {
  position: absolute;
  top: 0px;
  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;
}
/* Information Section */
.info-section {
  padding: 80px 0;
  background-color: var(--white);
}

.info-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.info-content h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.info-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--gray);
}

/* section */
.services-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h1 {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.section-header h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #4ecdc4);
  margin: 15px auto 0;
  border-radius: 2px;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(1, 118, 211, 0.05),
    transparent
  );
  transition: left 0.5s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 2rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 20px;
  font-weight: 600;
}

.service-features {
  list-style: none;
}

.service-features li {
  padding: 8px 0;
  color: var(--gray);
  position: relative;
  padding-left: 25px;
  font-size: 1rem;
  line-height: 1.5;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Specific icon colors for different services */
.service-card:nth-child(1) .service-icon {
  background: #e3f2fd;
  color: #1976d2;
}
.service-card:nth-child(2) .service-icon {
  background: #e8f5e8;
  color: #2e7d32;
}
.service-card:nth-child(3) .service-icon {
  background: #fff3e0;
  color: #f57c00;
}
.service-card:nth-child(4) .service-icon {
  background: #f3e5f5;
  color: #7b1fa2;
}
.service-card:nth-child(5) .service-icon {
  background: #e0f2f1;
  color: #00796b;
}

.service-card:nth-child(1):hover .service-icon {
  background: #1976d2;
  color: white;
}
.service-card:nth-child(2):hover .service-icon {
  background: #2e7d32;
  color: white;
}
.service-card:nth-child(3):hover .service-icon {
  background: #f57c00;
  color: white;
}
.service-card:nth-child(4):hover .service-icon {
  background: #7b1fa2;
  color: white;
}
.service-card:nth-child(5):hover .service-icon {
  background: #00796b;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-header h1 {
    font-size: 2.2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 30px 25px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 60px 0;
  }

  .section-header h1 {
    font-size: 1.8rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .service-card {
    padding: 25px 20px;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }
}
