body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  background-color: #f9f9f9;
  color: #333;
}

.hero {
  background-color: #ffffff;
  text-align: center;
  padding: 40px 20px 20px;
}

.hero img {
  max-width: 100%;
  height: auto;
  max-height: 320px;
}

.intro {
  text-align: center;
  font-size: 20px;
  margin-top: 20px;
  color: #555;
}

.section {
  background-color: #ffffff;
  margin: 20px auto;
  max-width: 800px;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.section h2 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #0066cc;
}

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

.section img {
  display: block;
  margin: 20px auto 0;
  max-width: 240px;
  height: auto;
}

footer {
  text-align: center;
  font-size: 14px;
  color: #888;
  padding: 20px;
}

.hero h1 {
  margin-bottom: 16px;
}

.screenshots-section {
  padding: 40px 0px;
  background-color: #fff;
  overflow-x: hidden;
}

/* .screenshots-container {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 20px 20px;
} */

.screenshots-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.screenshots {
  display: flex;
  gap: 24px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
  width: max-content;
}

/* .screenshot {
  width: 280px;
  flex-shrink: 0;
  border-radius: 40px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  background-color: white;
  scroll-snap-align: center;
  transition: transform 0.3s ease;
} */

.screenshot {
  width: 280px;
  flex-shrink: 0;
  scroll-snap-align: center;
}

.screenshot img {
  width: 100%;
  display: block;
}

.hero {
  background-color: #007FFF;
  color: white;
  padding: 30px 16px;
  text-align: center;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-button {
  display: inline-block;
  padding: 14px 28px;
  background-color: white;
  color: #007FFF;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s;
}

.hero-button:hover {
  background-color: #f0f0f0;
}