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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Navigation */
.site-header {
  background: #1a1a2e;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

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

.nav-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #fff;
  padding: 6rem 2rem;
  text-align: center;
}

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

.hero .lead {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 1rem;
  opacity: 0.9;
}

.hero p {
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.8;
}

/* Solutions Section */
.solutions {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.solution img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.solution h2 {
  color: #1a1a2e;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.solution ul {
  list-style: none;
  padding: 0;
}

.solution li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.solution li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #0f9d58;
  font-weight: bold;
}

/* Page Content */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.page-content h1 {
  margin-bottom: 2rem;
  color: #1a1a2e;
}

/* Footer */
.site-footer {
  background: #1a1a2e;
  color: #ccc;
  padding: 2rem;
  text-align: center;
}

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

.footer-content a {
  color: #ccc;
  text-decoration: none;
}

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

/* Responsive */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    gap: 1rem;
  }

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

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