* {
  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: #1a1a1a;
  background-color: #ffffff;
  transition: background-color 0.3s, color 0.3s;
  min-height: 100vh;
  padding: 1.5rem;
}
@media (prefers-color-scheme: dark) {
  body {
    color: #f5f5f5;
    background-color: #000000;
  }
}

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

.hero-section {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 2.5rem;
  min-height: 60vh;
  max-height: 70vh;
}
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    min-height: auto;
    max-height: none;
    margin-bottom: 4rem;
  }
}

.logo-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo-container .logo {
  width: 80%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .logo-container .logo {
    width: 90%;
    margin: 0 auto;
  }
}

.mission-container {
  flex: 1;
}
@media (max-width: 768px) {
  .mission-container {
    margin-bottom: 2rem;
  }
}
.mission-container .mission-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0159A4;
}
@media (max-width: 768px) {
  .mission-container .mission-title {
    font-size: 2rem;
    margin-bottom: 1.25rem;
  }
}
.mission-container .mission-text {
  font-size: 1.125rem;
  margin-bottom: 0.875rem;
  color: inherit;
}
@media (max-width: 768px) {
  .mission-container .mission-text {
    margin-bottom: 1.25rem;
  }
}
.mission-container .mission-text:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .mission-container .mission-text:last-child {
    margin-bottom: 0;
  }
}

.products-section {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .products-section {
    margin-top: 3rem;
  }
}
.products-section .products-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #0159A4;
}
@media (max-width: 768px) {
  .products-section .products-title {
    margin-bottom: 1.5rem;
  }
}

.product-card {
  border: 2px solid rgba(1, 89, 164, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
@media (prefers-color-scheme: dark) {
  .product-card {
    border-color: rgba(1, 89, 164, 0.4);
  }
}
.product-card:hover {
  border-color: #0159A4;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(1, 89, 164, 0.15);
}
@media (prefers-color-scheme: dark) {
  .product-card:hover {
    box-shadow: 0 8px 24px rgba(1, 89, 164, 0.3);
  }
}
.product-card .product-link {
  display: flex;
  align-items: center;
  gap: 2rem;
  text-decoration: none;
  color: inherit;
}
@media (max-width: 768px) {
  .product-card .product-link {
    flex-direction: column;
    text-align: center;
  }
}
.product-card .product-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .product-card .product-icon {
    width: 100px;
    height: 100px;
  }
}
.product-card .product-info {
  flex: 1;
}
.product-card .product-info .product-name {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #0159A4;
}
.product-card .product-info .product-description {
  font-size: 1rem;
  line-height: 1.6;
  color: inherit;
  opacity: 0.9;
}

.copyright {
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(1, 89, 164, 0.2);
}
@media (prefers-color-scheme: dark) {
  .copyright {
    border-top-color: rgba(1, 89, 164, 0.4);
  }
}
.copyright p {
  font-size: 0.875rem;
  color: inherit;
  opacity: 0.7;
}

/*# sourceMappingURL=styles.css.map */
