body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #f8f8f8;
  color: #333;
  line-height: 1.5;
}
header, main, footer, section {
  max-width: 600px;
  margin: 0 auto;
  padding: 1.5rem;
}
header {
  text-align: center;
  background: #fff;
  margin-bottom: 1rem;
}
header h1 {
  margin-bottom: 1rem;
  font-size: 3.4em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}
header h1 a {
  text-decoration: none;
  color: inherit;
}
a {
  color: inherit;
}
a.cta-button {
  display: inline-block;
  text-decoration: none;
}
a.cta-button img {
  width: 144px;
  height: auto;
}
main {
  background: #fff;
  margin-bottom: 1rem;
}
/* CONTAINER for 2 boxes per row */
.boxes-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 columns */
  gap: 1rem; /* space between boxes */
}
/* BOX STYLES */
.box {
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 4px;
  background-color: #fff;
}
.screenshots {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.screenshots img {
  width: 48%;
  border-radius: 4px;
}
footer {
  text-align: center;
  background: #fff;
  font-size: smaller;
}
section#support {
  background: #fff;
  margin-bottom: 1rem;
}