@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  background: #f7f9fb;
  color: #222;
}

.policy-container {
  max-width: 800px;
  margin: 40px auto 24px auto;
  background: #fff;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(79,140,255,0.08);
}

header {
  background: linear-gradient(120deg, #4f8cff 0%, #6ed6ff 100%);
  color: #fff;
  padding-bottom: 40px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 10%;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
}
.logo span {
  color: #ffe066;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
nav ul li a:hover {
  color: #ffe066;
}

.cta {
  background: #ffe066;
  color: #222;
  border: none;
  padding: 10px 24px;
  border-radius: 24px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.cta:hover {
  background: #fff;
}

.hero {
  text-align: center;
  margin-top: 40px;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 24px;
}
.hero-btn {
  background: #fff;
  color: #4f8cff;
  padding: 12px 32px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}
.hero-btn:hover {
  background: #ffe066;
  color: #222;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  padding: 60px 10% 40px 10%;
  background: #fff;
}
.feature {
  background: #f7f9fb;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(79,140,255,0.08);
  padding: 32px;
  width: 220px;
  text-align: center;
}
.feature h2 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.testimonials {
  background: #eaf4ff;
  padding: 50px 10%;
  text-align: center;
}
.testimonial {
  background: #fff;
  display: inline-block;
  margin: 16px;
  padding: 24px 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(79,140,255,0.08);
  max-width: 350px;
}
.testimonial span {
  display: block;
  margin-top: 12px;
  color: #4f8cff;
  font-weight: 700;
}

.contact {
  padding: 50px 10%;
  background: #fff;
  text-align: center;
}
.contact form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 400px;
  margin: 0 auto;
}
.contact input, .contact textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #cce0ff;
  font-size: 1rem;
}
.contact button {
  background: #4f8cff;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.contact button:hover {
  background: #6ed6ff;
}

footer {
  background: #4f8cff;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 1rem;
  margin-top: 0;
}

.footer-links a {
  color: #fff;
  text-align: center;
  font-size: 1rem;
  margin-top: 0;
}

.screenshots {
  background: #fff;
  padding: 50px 10%;
  text-align: center;
}
.screenshots h2 {
  margin-bottom: 32px;
  font-size: 2rem;
}
.screenshots-gallery {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.screenshot {
  background: #f7f9fb;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(79,140,255,0.08);
  padding: 16px;
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.screenshot img {
  width: 220px;
  height: 440px;
  object-fit: fill;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(79,140,255,0.10);
}
.screenshot p {
  margin: 0;
  font-size: 1rem;
  color: #4f8cff;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
  .features {
    flex-direction: column;
    align-items: center;
  }
  nav {
    flex-direction: column;
    gap: 16px;
  }
  .screenshots-gallery {
    flex-direction: column;
    align-items: center;
  }
  .screenshot {
    width: 90vw;
    max-width: 320px;
  }
  .screenshot img {
    width: 90vw;
    max-width: 280px;
    height: auto;
  }
}

@media (max-width: 600px) {
  .policy-container {
    padding: 20px 8px;
  }
}