/* Good Human! Website Styles */

:root {
  --primary-color: #4A90E2;
  --text-dark: #333;
  --text-light: #666;
  --bg-light: #f9f9f9;
  --white: #ffffff;
  --border-color: #e0e0e0;
  --accent-green: #52C41A;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

/* Header */
header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 1.5rem;
  font-weight: 600;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: var(--text-light);
  transition: color 0.3s;
}

nav a:hover {
  color: var(--primary-color);
}

/* Main Content */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 0;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.hero .tagline {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hero .description {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.app-icon-large {
  width: 150px;
  height: 150px;
  border-radius: 30px;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.feature {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.feature h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.feature p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Content Pages */
.content-page {
  max-width: 800px;
  margin: 0 auto;
}

.content-page h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.content-page h2 {
  font-size: 1.75rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.content-page p {
  margin-bottom: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.125rem;
}

.content-page ul {
  margin: 1rem 0 1.5rem 2rem;
  color: var(--text-light);
  line-height: 1.8;
}

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

/* Contact Box */
.contact-box {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}

.contact-box h3 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.contact-box a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 500;
}

.contact-box a:hover {
  text-decoration: underline;
}

/* Privacy Highlights */
.privacy-highlights {
  background: var(--bg-light);
  border-left: 4px solid var(--accent-green);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.privacy-highlights h3 {
  color: var(--accent-green);
  margin-bottom: 1rem;
}

.privacy-highlights ul {
  margin-left: 1.5rem;
}

/* Footer */
footer {
  background: var(--bg-light);
  border-top: 1px solid var(--border-color);
  padding: 2rem 0;
  margin-top: 4rem;
  text-align: center;
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero .tagline {
    font-size: 1.25rem;
  }

  nav ul {
    gap: 1rem;
  }

  .features {
    grid-template-columns: 1fr;
  }
}
