/* styles.css */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #f3f2f7;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: transparent;
  color: black;
}

.navbar a {
  color: black;
  text-decoration: none;
  font-weight: bold;
  margin: 0 15px;
}

.navbar a:hover {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.section {
  height: 90vh;
  display: flex;
  align-items: center;
  padding: 50px;
  background-color: #f3f2f7;
}

.card-section {
  width: 100%;
  height: 2%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f3f2f7;
  margin-bottom: 100px;
}

.section:nth-child(odd) {
  background-color: #f3f2f7;
}

.section:nth-child(even) {
  background-color: #f3f2f7;
}

.section img {
  max-height: 80%;
  max-width: 100%;
  object-fit: contain;
}

.content {
  flex: 1;
  padding: 20px;
}

.section:nth-child(odd) {
  flex-direction: row-reverse;
}

.screenshot {
  scale: 1.1;
}

.title {
  font-size: 2em;
  font-weight: bold;
}

.image {
  flex: 1;
  display: flex;
  justify-content: start;
  align-items: center;
}

h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

p {
  font-size: 1.2em;
  line-height: 1.5;
}

.values-container {
  display: flex;
  width: 80%;
  justify-content: space-around;
  margin: 20px 0;
}

.value-card {
  background-color: #e6e5ea;
  width: 300px;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.value-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.value-card h3 {
  font-weight: 600;
  margin-bottom: 10px;
}

.value-card p {
  font-weight: 400;
  color: #555;
}
