body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Header Styles */
.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
}

/* Carousel Styles */
.carousel-item {
  height: 500px;
}

.carousel-item img {
  object-fit: cover;
  height: 100%;
}

.carousel-caption {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 5px;
  bottom: 50px;
}

/* Card Styles */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  height: 200px;
  object-fit: scale-down;
}

/* Category Styles */
.category-icon img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-item:hover .category-icon img {
  transform: scale(1.1);
}

/* Footer Styles */
footer {
  margin-top: auto;
}

footer a {
  transition: color 0.3s ease;
}

footer a:hover {
  color: #f8f9fa !important;
  text-decoration: underline;
}

/* About Page Styles */
.achievement-item {
  padding: 20px;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.achievement-item:hover {
  transform: translateY(-5px);
}

/* Catalog Page Styles */
.form-range::-webkit-slider-thumb {
  background: #0d6efd;
}

.form-range::-moz-range-thumb {
  background: #0d6efd;
}

/* Contact Page Styles */
.accordion-button:not(.collapsed) {
  background-color: #e7f1ff;
  color: #0d6efd;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .carousel-item {
    height: 300px;
  }

  .carousel-caption {
    bottom: 20px;
    padding: 10px;
  }
}
