/* Reset and Base Styles */
* {
  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: #FFFFFF;
  background-color: #000000;
}

a {
  color: #48a76f;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #6bc388;
  text-decoration: underline;
}

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

/* Home Page Styles */
.home-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Hero Section */
.hero {
  background: #000000;
  color: white;
  padding: 100px 20px;
  text-align: center;
  border-bottom: 2px solid #48a76f;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.logo-container {
  margin-bottom: 30px;
}

.hero-logo {
  max-width: 200px;
  height: auto;
  margin: 0 auto;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -1px;
  color: #FFFFFF;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 20px;
  opacity: 0.95;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background-color: #48a76f;
  color: white;
}

.btn-primary:hover {
  background-color: #3a8757;
  color: white;
  text-decoration: none;
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid #48a76f;
}

.btn-secondary:hover {
  background-color: #48a76f;
  color: white;
  text-decoration: none;
}

.btn-outline {
  background-color: transparent;
  color: #48a76f;
  border: 2px solid #48a76f;
}

.btn-outline:hover {
  background-color: #48a76f;
  color: white;
  text-decoration: none;
}

/* Features Section */
.features {
  padding: 80px 20px;
  background-color: #000000;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  color: #FFFFFF;
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background: #1a1a1a;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #48a76f;
}

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

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.feature-card p {
  color: #CCCCCC;
  line-height: 1.7;
}

/* Use Cases Section */
.use-cases {
  padding: 80px 20px;
  background-color: #1a1a1a;
}

.use-cases-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.use-case-item {
  padding: 20px;
  background-color: #2a2a2a;
  border-radius: 8px;
  text-align: center;
  font-size: 1.1rem;
  color: #CCCCCC;
}

.use-case-item strong {
  color: #48a76f;
  display: block;
  margin-bottom: 8px;
}

/* CTA Section */
.cta {
  padding: 80px 20px;
  background: #000000;
  color: white;
  text-align: center;
  border-top: 2px solid #48a76f;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 15px;
  opacity: 0.95;
}

.cta-links {
  margin-top: 40px;
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.footer-links {
  margin-top: 20px;
}

.footer-links a {
  color: white;
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.separator {
  margin: 0 15px;
  opacity: 0.5;
}

/* Privacy Page Styles */
.privacy-container {
  min-height: 100vh;
  background-color: #000000;
  padding: 40px 20px;
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: #1a1a1a;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #2a2a2a;
}

.privacy-content h1 {
  color: #FFFFFF;
  border-bottom: 3px solid #48a76f;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-size: 2.5rem;
}

.privacy-content h2 {
  color: #FFFFFF;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.5em;
}

.privacy-content h3 {
  color: #CCCCCC;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.2em;
}

.privacy-content p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: #CCCCCC;
}

.privacy-content ul,
.privacy-content ol {
  margin-bottom: 15px;
  padding-left: 30px;
}

.privacy-content li {
  margin-bottom: 8px;
  line-height: 1.7;
  color: #CCCCCC;
}

.privacy-content a {
  color: #48a76f;
}

.privacy-content a:hover {
  color: #6bc388;
}

.last-updated {
  color: #999999;
  font-style: italic;
  margin-bottom: 30px;
}

.contact-info {
  background-color: #2a2a2a;
  padding: 20px;
  border-radius: 5px;
  margin-top: 30px;
  border: 1px solid #48a76f;
}

.contact-info h3 {
  margin-top: 0;
}

.divider {
  margin: 40px 0;
  border: none;
  border-top: 1px solid #2a2a2a;
}

.acknowledgment {
  text-align: center;
  color: #999999;
  font-style: italic;
  margin-top: 30px;
}

.back-link {
  margin-top: 40px;
  text-align: center;
}

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

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

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

  .use-cases-list {
    grid-template-columns: 1fr;
  }

  .privacy-content {
    padding: 20px;
  }

  .privacy-content h1 {
    font-size: 2rem;
  }
}
