@import url(https://fonts.googleapis.com/css?family=Open+Sans);

body {
  font-family: 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}

.container {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

strong {
  font-weight: 500;
}

h1,
h2 {
  color: #2c3e50;
}

p {
  line-height: 1.6;
}

.cta-button {
  background-color: #3498db;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 20px;
}

.cta-button:hover {
  background-color: #2980b9;
}

.privacy-note {
  font-size: 0.8em;
  color: #777;
}

footer {
  text-align: center;
  margin-top: 30px;
  color: #777;
}

.hero-image {
  width: 100%;
  max-height: 400px; /* Adjust as needed */
  object-fit: cover; /* Prevents distortion */
  border-radius: 8px;
  margin-bottom: 20px;
}

.feature-image {
  width: 100%;
  max-height: 200px; /* Adjust as needed */
  object-fit: contain; /* Use 'contain' to fit the entire image within the box */
  border-radius: 5px;
  margin-bottom: 10px;
}

.image-section {
  margin-top: 20px;
  text-align: center;
}

.app-screenshot {
  width: 200px; /* Adjust as needed */
  height: auto;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin: 10px;
}

/* Example of a grid layout for screenshots (optional) */
.screenshot-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}
