* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Helvetica', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

body {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  background-color: #1F414B;
  width: 100%;
}
a {
    text-decoration: none;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar-logo img {
  width: 60px;
  height: auto;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.btn-outline {
  background: transparent;
  border: 1px solid white;
  color: white;
}

.btn-outline:hover {
  background: white;
  color: #1F414B;
}

.btn-primary {
  background: #007BFF;
  border: none;
  color: white;
}

.btn-primary:hover {
  background: #0056b3;
}

.hero-section {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-image, .hero-text {
  flex: 1;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.hero-text p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.products-section {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.product-card {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
  text-align: center;
}

.price {
  font-size: 1.5rem;
  color: #1F414B;
  margin-bottom: 0.5rem;
}

.product-title {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.product-type {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1rem;
}

.footer {
  background-color: #1F414B;
  color: white;
  padding: 2rem 1rem;
  margin-top: 50px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo img {
  width: 60px;
  height: auto;
}

.footer-contact h2 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-contact p {
  font-size: 1.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-image, .hero-text {
    width: 100%;
  }

  .btn-primary {
    width: 100%;
    max-width: 200px;
  }

  .products-section {
    flex-direction: column;
    align-items: center;
  }

  .product-card {
    max-width: 100%;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .navbar-logo img, .footer-logo img {
    width: 50px;
  }

  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .hero-text p {
    font-size: 0.9rem;
  }

  .price {
    font-size: 1.25rem;
  }

  .product-title {
    font-size: 1.1rem;
  }

  .product-type {
    font-size: 0.9rem;
  }

  .footer-contact h2 {
    font-size: 1.25rem;
  }

  .footer-contact p {
    font-size: 1rem;
  }
}