body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8fbff;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Page Section Layout */
.page-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 5%;
  flex-wrap: wrap;
  background-color: #f3f8fd;
}

.page-content {
  flex: 1;
  max-width: 50%;
}

.page-content h1 {
  margin-top: 3%;
  color: #002855;
  font-size: 26px;
  margin-bottom: 20px;
}

.page-content p {
  color: #1a4b84;
  font-size: 17px;
  margin-bottom: 15px;
  line-height: 1.7;
}

.contact-btn {
  display: inline-block;
  background-color: #002855;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.contact-btn:hover {
  background-color: #004aad;
}
.page-image {
  flex: 1;
  max-width: 85%;
  text-align: right;
}

.page-image img {
  margin-top: 8%;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}