body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: 0;
  color: #0f172a;
  background: white;
}

.landing {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 4rem;
  padding-top: 7rem;
  max-width: 1200px;
  margin: auto;
  gap: 3rem;
  flex-wrap: wrap;
}

.left {
  flex: 1 1 400px;
  max-width: 500px;
}

.left h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.left p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #334155;
}

.left a {
  text-decoration: none;
}

.left img {
  height: 50px;
  margin-right: 0.5rem;
}

.right {
  flex: 1 1 300px;
  text-align: center;
}

.device-screens {
  position: relative;
  display: inline-block;
  max-width: 400px;
}

.ipad-screen {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
  position: relative;
  z-index: 1;
}

.iphone-screen {
  width: 45%;
  max-width: 160px;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.35);
  position: absolute;
  bottom: -40px;
  right: -80px;
  z-index: 2;
}

.right img:not(.ipad-screen):not(.iphone-screen) {
  max-width: 300px;
  width: 100%;
  border-radius: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

footer {
  text-align: center;
  font-size: 0.875rem;
  padding: 2rem 1rem;
  color: #475569;
}

footer a {
  color: #0f172a;
  text-decoration: none;
}

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

/* Responsive design for device screens */
@media (max-width: 768px) {
  .device-screens {
    max-width: 300px;
  }

  .ipad-screen {
    max-width: 280px;
    border-radius: 20px;
  }

  .iphone-screen {
    max-width: 120px;
    border-radius: 15px;
    bottom: -15px;
    right: -20px;
  }
}

@media (max-width: 480px) {
  .device-screens {
    max-width: 250px;
  }

  .ipad-screen {
    max-width: 230px;
    border-radius: 18px;
  }

  .iphone-screen {
    max-width: 100px;
    border-radius: 12px;
    bottom: -10px;
    right: -15px;
  }
}

/* Privacy page */
.privacy-page {
  text-align: center;
  max-width: 700px;
  margin: 6rem auto;
  padding: 0 1rem;
}

.privacy-page h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.privacy-page h1 span {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 0.25rem;
}

.privacy-page p {
  font-size: 1.125rem;
  color: #334155;
}
