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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
}
/*heyyy*/

/* Navigation */
nav {
  background-color: #1a1a1a;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #4CAF50;
}

/* Main Content */
main {
  min-height: calc(100vh - 300px);
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 10px;
  margin-bottom: 3rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* Content Section */
.content-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: #f9f9f9;
  border-radius: 8px;
  border-left: 4px solid #4CAF50;
}

.content-section h2 {
  color: #667eea;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.content-section p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.content-section ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.content-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: #4CAF50;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-button:active {
  transform: translateY(0);
}

.cta-container {
  text-align: center;
  margin: 3rem 0;
}

/* Footer */
footer {
  background-color: #1a1a1a;
  color: white;
  padding: 2rem;
  text-align: center;
  border-top: 2px solid #4CAF50;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.footer-section h3 {
  margin-bottom: 0.5rem;
  color: #4CAF50;
}

.footer-section p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ddd;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #999;
}

/* Legal Pages */
.legal-page {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
}

.legal-page h1 {
  color: #667eea;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.legal-page h2 {
  color: #667eea;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  border-bottom: 2px solid #4CAF50;
  padding-bottom: 0.5rem;
}

.legal-page p {
  margin-bottom: 1rem;
  line-height: 1.8;
  text-align: justify;
}

.legal-page ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.legal-page li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav ul {
    gap: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

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

  main {
    padding: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }

  .footer-section h3,
  .footer-section p {
    text-align: center;
  }

  .content-section {
    padding: 1.5rem;
  }

  .content-section h2 {
    font-size: 1.5rem;
  }

  .cta-button {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }

  /* Stack image and text vertically on tablet */
  .content-section > div[style*="display: flex"] {
    flex-direction: column;
    gap: 1rem;
  }

  .content-section img {
    max-width: 100% !important;
    width: 100%;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 1rem;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero {
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  main {
    min-height: calc(100vh - 400px);
  }
}
