body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #10151b;
  color: #fff;
  min-height: 100vh;
}

header {
  display: flex;
  align-items: center;
  padding: 32px 48px 0 48px;
  line-height: 1;
}

header a {
  display: flex;
  align-items: center;
}

.header-left {
  display: flex;
  align-items: center;
}

.app-brand {
  display: flex;
  align-items: center;
  margin-right: 40px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-nav a {
  color: #b0b8c1;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.header-nav a:hover {
  color: white;
  background: rgba(240, 178, 99, 0.1);
}

.header-nav a.active {
  color: white;
  background: rgba(240, 178, 99, 0.2);
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  margin-right: 12px;
}

.app-name {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 1.7rem;
  color: #F0B263;
  line-height: 1;
}

main {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 48px 0 48px;
  min-height: 70vh;
}

.hero {
  max-width: 480px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.1;
}

.subheadline {
  font-size: 1.1rem;
  color: #b0b8c1;
  margin-bottom: 32px;
}

.description {
  font-size: 1rem;
  color: #b0b8c1;
  margin-bottom: 32px;
  line-height: 1.6;
}

.store-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: center;
}

.store-btn img {
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.15s;
}

.store-btn img:hover {
  transform: scale(1.05);
}

.mockups {
  display: flex;
  gap: 32px;
}

.phone-mockup {
  width: 220px;
  height: 440px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  object-fit: contain;
  background: #f0f0f0;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 4rem auto;
  max-width: 1200px;
  padding: 0 48px;
}

.feature-card {
  background: #1a2027;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s ease;
  border: 1px solid rgba(240, 178, 99, 0.1);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 178, 99, 0.3);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: #F0B263;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.feature-card p {
  color: #b0b8c1;
  line-height: 1.6;
  margin: 0;
}

/* Support Page Styles */
.support-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  min-height: auto;
}

.support-header {
  text-align: center;
  margin-bottom: 2rem;
}

.support-card {
  background: #181d23;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
  border: 1px solid rgba(240, 178, 99, 0.1);
}

.support-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 178, 99, 0.3);
}

.support-card h2 {
  color: #F0B263;
  margin-top: 0;
  margin-bottom: 1rem;
  text-align: center;
}

.support-card p {
  color: #b0b8c1;
  line-height: 1.6;
}

.contact-methods {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: #10151b;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.contact-item:hover {
  background: #1a2027;
}

.contact-icon {
  width: 24px;
  height: 24px;
  margin-right: 16px;
  filter: invert(55%) sepia(12%) saturate(267%) hue-rotate(179deg) brightness(87%) contrast(84%);
}

.btn-primary {
  display: block;
  width: max-content;
  margin: 1.5rem auto 0;
  background: #F0B263;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.15s, background 0.3s;
  text-align: center;
}

.btn-primary:hover {
  background: #D4A055;
  transform: scale(1.05);
}

.faq-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  padding: 1rem;
  background: #10151b;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  transition: background 0.2s ease;
}

.faq-item:hover {
  background: #1a2027;
}

.faq-question {
  font-weight: bold;
  margin-bottom: 0.75rem;
  color: white;
}

/* Policy Pages Styles */
.policy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  color: #fff;
  line-height: 1.6;
}

.policy-header {
  text-align: center;
  margin-bottom: 2rem;
}

.policy-content {
  background: #181d23;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(240, 178, 99, 0.1);
}

.policy-content h2 {
  color: #F0B263;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h2:first-of-type {
  margin-top: 0;
}

.policy-content p {
  margin-bottom: 1rem;
  color: #b0b8c1;
}

.policy-content ul {
  color: #b0b8c1;
  padding-left: 1.5rem;
}

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

.policy-content strong {
  color: #fff;
}

.last-updated {
  font-style: italic;
  color: #888;
  text-align: center;
  margin-bottom: 2rem;
}

@media (max-width: 900px) {
  main {
    flex-direction: column;
    align-items: center;
    padding: 32px 16px 0 16px;
  }
  .mockups {
    margin-top: 32px;
    gap: 16px;
    justify-content: center;
    width: 100%;
  }
  .hero {
    text-align: center;
    max-width: 600px;
  }
  .store-buttons {
    justify-content: center;
  }
  .features-grid {
    padding: 0 16px;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  header {
    padding: 24px 12px 0 12px;
  }
  main {
    padding: 24px 8px 0 8px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .phone-mockup {
    width: 140px;
    height: 280px;
  }
  .features-grid {
    padding: 0 8px;
    margin: 2rem auto;
  }
  .feature-card {
    padding: 1.5rem;
  }
  .support-container {
    padding: 1rem;
  }
  .contact-methods {
    gap: 0.75rem;
  }
  .policy-container {
    padding: 1rem;
  }
  .policy-content {
    padding: 1.5rem;
  }
}

/* Footer Styles */
footer {
  background-color: #10151b;
  padding: 1.5rem 0;
  margin-top: 2rem;
  border-top: 1px solid #1a2027;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.footer-links {
  margin-bottom: 1rem;
}

.footer-links a {
  color: #b0b8c1;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.separator {
  margin: 0 0.5rem;
  color: #b0b8c1;
}

.copyright {
  color: #b0b8c1;
  font-size: 0.8rem;
} 