* {
  margin: 0;
  padding: 0;
}


body {
  background: linear-gradient(to bottom, #647b3c, #536d34);
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.header {
  padding: 1.5rem 0;
  background: transparent;
}

.header-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.header-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 10px;
}

.header-text {
  font-size: 1.5rem;
  font-weight: 500;
  color: white;
  letter-spacing: -0.5px;
  padding-left: -0.5rem;
}

/* ====== Main Landing Page ====== */


.container {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1200px;
}

.content {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-top: 20px;
  gap: 30px;
}

h1 {
  font-size: 3.5rem;
  font-weight: 500;
  color: white;
  letter-spacing: -1px;
}

.hero-text {
  font-size: 24px;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 50%;
  align-self: center;
}

.logo {
  width: 150px;
  height: 150px;
  border-radius: 40px;
  margin-bottom: -20px;
  align-self: center;
}

.app-store-badge {
  height: 50px;
  width: auto;
}



button {
  padding: 20px;
  border-radius: 20px;
  background-color: black;
  color: white;
  border-color: white;
}

.phone-container {
    display: flex;
  justify-content: center;
  margin: 4rem 0 5rem;
  gap:20px;
}

.phone-box {
  display: flex;
  flex-direction: column;
text-align: center;
gap:10px;
}

.feature-title {
  color:white;
}


.iphone {
    position: relative;
    width: 280px;
    height: 580px;
    background: #222;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    padding: 10px;
    border: 1px solid #444;
    overflow: hidden;
}

.iphone-notch {
    position: absolute;
    width: 100px;
    height: 25px;
    background: #222;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 2;
}

.iphone-screen {
    width: 100%;
  height: 100%;
  background: #000;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}


#app-demo {
    width: 101%;
    height: 101%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-position: center;
}

footer {
  text-align: center;
  padding: 3rem 0;
  margin-top: 2rem;
  border-top: 1px solid white;

}

.footer-links {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
color:white;
font-size: 1.2rem;
}

.copyright {
font-size: 0.9rem;
color: rgba(255, 255, 255, 0.5);
}


/* ====== Contact Page Styles ====== */
.contact-content {
  max-width: 500px;
  margin: 0 auto 4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.contact-hero-text {
  font-size: 1.2rem;
  color:white;
}

.contact-simple {
  margin: 3rem 0;
}

.email-text {
  color: white;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
}

.contact-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 2rem;
}

/* ====== Legal Pages Styles (Privacy & Terms) ====== */
.legal-content {
  max-width: 800px;
  margin: 2rem auto 4rem;
  text-align: left;
  color: white;
  line-height: 1.6;
}

.legal-content h2 {
  color: white;
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 0.5rem;
}

.legal-content h3 {
  color: white;
  font-size: 1.2rem;
  margin: 1.5rem 0 0.5rem;
}

.legal-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.legal-content ul {
  color: rgba(255, 255, 255, 0.8);
  margin: 1rem 0 1rem 2rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.last-updated {
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

section {
  margin-bottom: 2rem;
}

/* ====== FAQ Page Styles ====== */
.faq-container {
  max-width: 800px;
  margin: 3rem auto;
  text-align: left;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.faq-item h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.faq-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 0;
}

.faq-item ul {
  color: rgba(255, 255, 255, 0.8);
  margin: 1rem 0 0 1.5rem;
  line-height: 1.6;
}

.faq-item li {
  margin-bottom: 0.5rem;
}

.faq-contact {
  text-align: center;
  margin: 4rem auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 500px;
}

.faq-contact h2 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.faq-contact p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-button {
  display: inline-block;
  background: rgba(255, 255, 255, 0.9);
  color: #647b3c;
  padding: 15px 30px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.contact-button:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Media Queries /*

/* ====== Large Mobile / Small Tablet (≤ 768px) ====== */
@media (max-width: 768px) {
  .header { padding: 1rem 0; }

  .header-text { font-size: 1.25rem; }

  h1 {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
  }

  .hero-text {
    font-size: 18px;
    line-height: 28px;
    max-width: 90%;
  }

  .logo {
    width: 120px;
    height: 120px;
    border-radius: 32px;
    margin-bottom: -12px;
  }

  .content { gap: 20px; }

  .phone-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 1.5rem 0 2.5rem;
  }

  .iphone {
    width: 240px;
    height: 500px;
  }

  button {
    padding: 16px;
    border-radius: 16px;
  }

  .footer-links {
    gap: 1.25rem;
    flex-wrap: wrap;
  }

  .nav-link { font-size: 1rem; }
  
  .faq-item {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .faq-item h3 {
    font-size: 1.1rem;
  }

  .faq-contact {
    margin: 3rem auto;
    padding: 1.5rem;
  }
}

/* ====== Small Mobile (≤ 480px) ====== */
@media (max-width: 480px) {
  .header-container,
  .container { padding: 0 12px; }

  .brand { gap: 0.5rem; }

  .header-logo {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }

  .header-text { font-size: 1.1rem; }

  h1 {
    font-size: 2rem;
    font-weight: 600; /* a tad bolder for readability */
  }

  .hero-text {
    font-size: 16px;
    line-height: 24px;
    max-width: 100%;
  }

  .logo {
    width: 96px;
    height: 96px;
    border-radius: 28px;
    margin-bottom: -8px;
  }

  .iphone {
    width: 220px;
    height: 460px;
    border-radius: 32px;
  }

  .iphone-notch {
    width: 88px;
    height: 22px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }

  footer { padding: 2rem 0; }
  .copyright { font-size: 0.85rem; }
}