/* ===================== */
/* Legal Pages */
/* ===================== */

.page-banner {

  position: relative;

  height: 320px;

  background:
    linear-gradient(rgba(15, 23, 42, 0.80),
      rgba(15, 23, 42, 0.80)),
    url('images/service-banner.jpg');

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.page-banner-content {

  color: white;
}

.page-banner-content h1 {

  font-size: 60px;
  font-weight: 800;

  margin-bottom: 15px;
}

.page-banner-content p {

  font-size: 18px;
}

.page-banner-content a {

  color: #4CAF50;

  text-decoration: none;

  font-weight: 600;
}

.page-content {

  background: #f8fafc;

  padding: 80px 0;
}

.content-card {

  background: white;

  padding: 50px;

  border-radius: 25px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.content-card h2 {

  font-size: 32px;

  color: #0f172a;

  font-weight: 700;

  margin-bottom: 20px;
}

.content-card h3 {

  color: #4CAF50;

  font-size: 24px;

  margin-top: 30px;

  margin-bottom: 15px;

  font-weight: 700;
}

.content-card p {

  color: #64748b;

  line-height: 1.9;
}

@media(max-width:768px) {

  .page-banner {

    height: 250px;
  }

  .page-banner-content h1 {

    font-size: 38px;
  }

  .content-card {

    padding: 30px 20px;
  }

  .content-card h2 {

    font-size: 28px;
  }

  .content-card h3 {

    font-size: 22px;
  }

}