/* Global Reset and Typography */
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fefbef;
  color: #333;
}

/* Make main content centered with max width */
main {
  
  margin: 0 auto;
  padding: 0 20px;
}

/* Full-width banner image with no gaps */
header {
  margin: 0;
  padding: 0;
  text-align: center;
}

img.logo {
  width: 100%;
  height: auto;
  display: block;
}

.icon {
  display: block;
  margin: 0 auto 10px;
  width: 60px;
  height: auto;
}




/* Title and headings */
h1, h2 {
  text-align: center;
  color: #121212;
  margin: 20px 0 10px;
}

/* App section layout */
.app-section {
  margin: 40px 0;
  
  padding-top: 30px;
  text-align: center;
}

/* Screenshot grid */
.screenshots {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
  overflow-x: auto;
  margin-top: 40px;
}


.screenshots img {
  width: 10%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}


/* Support section */

.footer {
  text-align: center;
  margin-top: 40px;
}

.footer a {
  color: #323df2; /* Deep blue — you can replace with #323df2 if preferred */
  font-weight: bold;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}



.support {
  margin: 60px 0 40px;
  padding: 20px;
  background: #f7f7f7;
  border-radius: 8px;
  text-align: center;
}

.support a {
  color: #323df2;
  font-weight: bold;
  text-decoration: none;
}
