h1 {
  text-align: center;
  font-size: 36px;
  color: #0C4D87;
  margin-bottom: 40px;
  animation: fadeInDown 0.8s ease;
}

.products {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.product-card {
  background: #ffffff;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  display: flex;
  align-items: flex-start; /* for icon alignment */
  justify-content: flex-start;
  font-weight: 500;
  font-size: 15px;
  color: #0C4D87;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards;
  text-align: left;
  gap: 8px;
}
.section-meratitle {
  margin-bottom: 50px;
  margin-top: -7px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-meratitle h2 {
  font-weight: 700;
  font-size: 35px;
  margin-bottom: 0;
  padding-bottom: 15px;
  position: relative;
}
.section-meratitle h2:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 80px;
  height: 5px;
  background-color: #0C4D87;
  border-radius: 5px;
}


.product-card:nth-child(n) {
  animation-delay: calc(0.1s * var(--i));
}

.product-card i {
  color: #0C4D87;
  font-size: 17px;
  margin-right: 8px;
  flex-shrink: 0;
  line-height: 1.4;
}

.product-card .product-name {
  display: inline-block;
  line-height: 1.4;
  word-break: break-word;
}

.product-card:hover {
  background: #0C4D87;
  color: #ffffff;
  transform: translateY(-2px);
}

.product-card:hover i {
  color: #ffffff;
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}