/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #FFFFFF;
  color: #222;
}

/* Sticky Navigation Bar */
.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: #FFFFFF;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

/* Page Content */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;   
    padding: 60px 30px;
    margin: auto;
    font-size: 18px;
    line-height: 1.6;
}


.intro, .features {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  gap: 30px;
}

.intro img, .features img {
  max-width: 45%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.intro p, .features p {
  text-align: left;
}

.intro h2, .features h2 {
  text-align: left;
  margin-bottom: 10px;
}

.intro > div, .features > div {
  flex: 1;
}


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);
}