.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);
}

.services {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  transition: var(--transition);
  animation: fadeUp 0.8s ease forwards;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-hover);
}

.service-img {
  height: 240px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 30px 25px;
  text-align: center;
}

.service-content h3 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 15px;
  transition: var(--transition);
}

.service-card:hover .service-content h3 {
  color: var(--secondary);
}

.service-content p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.6;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.section-title p {
  color: var(--gray);
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
}
