/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #000;
  background-color: #ffffff;
}

/* Screen reader only class for SEO H1 */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.page-container {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Screenshots Section */
.screenshots-section {
  padding: 40px 60px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}


.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  flex-grow: 1;
}

.screenshot-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 32px;
  padding: 40px 40px 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}


.screenshot-card h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #111;
}

.screenshot-card p {
  font-size: 15px;
  line-height: 1.5;
  color: #666;
}

.screenshot-card span.highlight {
  color: #e51d52;
}

.app-screenshot {
  margin-top: 30px;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top;
  border-radius: 16px;
}


/* Download Section */
.download-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 40px 60px 40px;
  background-color: #ffffff;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 12px;
  transition: transform 0.2s, opacity 0.2s;
}

.store-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.store-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.small-text {
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.large-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 1024px) {
  .screenshots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .screenshots-grid {
    grid-template-columns: 1fr;
  }

  .screenshots-section {
    padding: 40px 30px;
  }

  .download-section {
    flex-direction: column;
    padding: 20px 30px 40px;
  }
}

/* Content Section (e.g. Privacy Policy) */
.content-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 30px;
  line-height: 1.6;
  color: #333;
}

.content-section h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #000;
}

.content-section h2 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #111;
}

.content-section p {
  margin-bottom: 16px;
  font-size: 16px;
}

.content-section ul {
  margin-bottom: 24px;
  padding-left: 24px;
}

.content-section li {
  margin-bottom: 8px;
  font-size: 16px;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 40px 20px;
  background-color: transparent;
}

.site-footer p {
  font-size: 14px;
  color: #666;
}

.footer-links {
  margin-top: 10px;
}

.footer-link {
  font-size: 14px;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #e51d52;
  text-decoration: underline;
}