@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap");

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

body {
  font-family: "Hanken Grotesk", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

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

header {
  padding: 40px 0;
  border-bottom: 1px solid #eee;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

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

.logo-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

nav a:hover {
  color: #666;
}

main {
  padding: 80px 0;
}

h1 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 40px;
  letter-spacing: -1px;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 50px;
  margin-bottom: 20px;
  color: #333;
}

footer {
  border-top: 1px solid #eee;
  padding: 40px 0;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
}

/* Homepage specific styles */
.homepage-main {
  text-align: center;
}

.tagline {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.tagline strong {
  color: #333;
  font-weight: 600;
}

/* Products page styles */
.intro {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 60px;
}

.intro strong {
  color: #333;
  font-weight: 600;
}

.product {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #f0f0f0;
}

.product:last-child {
  border-bottom: none;
}

.product-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
}

.product-description {
  margin: 8px 0;
  color: #666;
}

.product-details {
  font-size: 0.9rem;
  color: #999;
}

.product-link {
  color: #333;
  text-decoration: none;
}

.product-link:hover {
  text-decoration: underline;
}

/* About page styles */
.about-h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 50px;
  margin-bottom: 20px;
  color: #333;
}

.contact {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  margin: 30px 0;
  text-align: center;
}

.contact a {
  color: #333;
  text-decoration: none;
}

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

.values {
  margin: 40px 0;
}

.value {
  margin-bottom: 30px;
}

.value-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.value-description {
  color: #666;
  line-height: 1.7;
}

.work-info {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  margin: 40px 0;
}

.work-info h3 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.work-info p {
  color: #666;
  margin-bottom: 15px;
}

/* Careers page styles */
.contact-box {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  margin: 40px 0;
  text-align: center;
}

.contact-box h3 {
  margin-bottom: 15px;
  color: #333;
}

.contact-box a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

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

.info-section {
  margin: 40px 0;
}

.info-section p {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.7;
}

.highlight {
  background: #f0f8ff;
  padding: 20px;
  border-left: 4px solid #0066cc;
  margin: 30px 0;
}

.highlight p {
  margin: 0;
  color: #333;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 20px;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  h1 {
    font-size: 2rem;
  }

  .tagline,
  .intro {
    font-size: 1.1rem;
  }

  main {
    padding: 60px 0;
  }
}
