body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
}

h1 {
  color: #2c3e50;
  font-size: 2.5rem;
  font-weight: bold;
}

/* Navbar Styles */
.navbar {
  background-color: #34495e;
}

.navbar-brand {
  font-size: 1.8rem;
  color: #f39c12 !important;
}

.navbar-nav .nav-link {
  color: #ecf0f1 !important;
  font-size: 1.1rem;
}

.navbar-nav .nav-link:hover {
  color: #f39c12 !important;
  text-decoration: underline;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.product-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 250px;
  padding: 10px;
  text-align: center;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}

.product-card h3 {
  margin: 10px 0 5px;
}

.product-card p {
  color: #555;
}

.btn {
  display: inline-block;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn:hover {
  background-color: #0056b3;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background: white;
  margin: 10% auto;
  padding: 20px;
  width: 80%;
  max-width: 500px;
  position: relative;
  border-radius: 8px;
}

.close {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 24px;
  cursor: pointer;
}

footer {
  background-color: #2c3e50;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}

footer p {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  color: #bdc3c7;
}

footer .social-icons {
  margin: 20px 0;
}

footer .social-icons a {
  margin: 0 15px;
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

footer .social-icons a:hover {
  color: #f39c12;
}

footer .quick-links {
  margin-top: 20px;
}

footer .quick-links a {
  color: #bdc3c7;
  font-size: 1.1rem;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer .quick-links a:hover {
  color: #f39c12;
}

/* Media Queries */
@media (max-width: 768px) {
  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-link {
    font-size: 1.1rem;
    margin-right: 0;
  }

  .form-control, textarea, button[type="submit"] {
    width: 100%;
  }

  .social-icons a {
    font-size: 1.5rem;
  }

  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  footer p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .navbar-nav .nav-link {
    font-size: 1rem;
    margin-right: 1rem;
  }

  button[type="submit"] {
    width: 100%;
  }

  .social-icons a {
    font-size: 1.3rem;
  }

  footer p {
    font-size: 0.85rem;
  }
}
