* {
  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;
  background-color: #fff;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Navigation */
.nav-desktop {
  width: 100%;
  padding: 1.5rem;
}

.page-nav {
  width: 100%;
  padding: 1.5rem;
  border-bottom: 1px solid #e5e5e5;
}

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

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.back-link {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #333;
}

/* Main content */
.main-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.logo-container {
  text-align: center;
}

.logo {
  max-width: 600px;
  width: 100%;
  height: auto;
}

/* Page content */
.page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  flex: 1;
}

.page-content h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #333;
}

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

.content-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.content-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1rem;
}

.company-info p,
.registry-info p {
  margin-bottom: 0.5rem;
}

.content-section a {
  color: #2563eb;
  text-decoration: none;
}

.content-section a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

/* Footer */
.footer {
  width: 100%;
  padding: 1.5rem;
  text-align: center;
  border-top: 1px solid #e5e5e5;
  margin-top: auto;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

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

.footer-links a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #333;
}

.footer-text {
  color: #666;
  font-size: 0.9rem;
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .page-nav .nav-links {
    display: none;
  }

  .logo {
    max-width: 400px;
  }

  .page-content {
    padding: 2rem 1rem;
  }

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

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

  .content-section p {
    font-size: 1rem;
  }

  .nav-content {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .logo {
    max-width: 300px;
  }

  .main-content {
    padding: 1rem;
  }

  .page-content {
    padding: 1.5rem 0.75rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }
}
