body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

h1,
h2 {
  color: #2c3e50;
}

.container {
  text-align: left;
}

.index-container {
  text-align: center;
}

.btn {
  display: inline-block;
  background-color: #3498db;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin: 10px;
}

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

footer {
  margin-top: 50px;
  font-size: 0.9em;
  text-align: center;
}

.email {
  font-weight: bold;
  color: #3498db;
}

.last-updated {
  font-style: italic;
  margin-bottom: 20px;
}

/* Styles moved from index.html */
.app-banner img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.app-store-link {
  display: inline-block;
}

.app-store-link img {
  vertical-align: middle;
  object-fit: contain;
}

.content-left-aligned {
  text-align: left;
}

/* New styles for features section */
.features-container {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.features-text {
  flex: 1;
}

.features-image {
  flex: 1;
  text-align: center;
}

.features-image img {
  max-width: 100%;
  height: auto;
}

.feature-list {
  padding-left: 20px;
}

.feature-list li {
  margin-bottom: 10px;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .features-container {
    flex-direction: column;
  }

  .features-image {
    order: -1; /* This will place the image above the text on small screens */
  }
}

/* Add this to the existing styles.css file */

.screenshots-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.screenshots-container img {
  max-width: 45%;
  height: auto;
}

@media (max-width: 768px) {
  .screenshots-container {
    flex-direction: column;
    align-items: center;
  }

  .screenshots-container img {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

/* Styles for app-link */
#app-link {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 1000;
}

#app-link a:first-child img {
  width: 123px;
  height: 41px;
  vertical-align: middle;
  object-fit: contain;
}

#app-link .app-store-link img {
  width: 100px;
  height: 100px;
}

/* Mobile styles for app-link */
@media (max-width: 768px) {
  #app-link {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  #app-link a:first-child img {
    width: auto;
    height: 50px;
  }

  #app-link .app-store-link img {
    width: 100px;
    height: 100px;
  }
}
