/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: Arial, sans-serif;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  color: #222;
}

/* Sticky Navbar */
.navbar {
  background-color: #3D42E4;
  position: sticky;
  top: 0;
  width: 100%;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #A7A9DF;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #56589E;
}

/* Page Header */
.page-header {
  text-align: center;
  padding: 60px 20px 30px;
  background-color: #f5f5ff;
}

.page-header h1 {
  color: #3D42E4;
  margin-bottom: 10px;
}

.page-header p {
  color: #56589E;
  font-size: 18px;
}

/* Services Section */
.services-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 30px;
  max-width: 1000px;
  margin: auto;
}

.service-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f9f9ff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  gap: 30px;
}

.service-card img {
  max-width: 45%;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-card h2 {
  color: #3D42E4;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.service-card:nth-child(even) {
  flex-direction: row-reverse;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #f0f0f0;
  font-size: 16px;
  color: #555;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
  margin-top: auto;
}
