*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

#section-6-main-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:40px;
    flex-wrap: wrap;
}

#section-6-context{
    font-size: 14px;
}

#section-6-context::before{
    content:'💠';
}

#section-6-tagline{
    font-size: 50px;
    font-weight: 600;
    max-width: 500px;
    text-align: center;
}

#card-container{
    display: flex;
    gap:40px;   
    flex-wrap: wrap ;    
    justify-content: center;    
    align-items: center;
}

.card {
  background: #f0f2f7;
  border-radius: 28px;
  padding: 28px;
  width: 300px;
  box-shadow:
    8px 8px 20px rgba(0, 0, 0, 0.10),
    -4px -4px 12px rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow:
    12px 16px 28px rgba(0, 0, 0, 0.13),
    -4px -4px 14px rgba(255, 255, 255, 0.9);
}

.image-wrap {
  width: 100%;
  background: #eaecf3;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px 28px;
  box-shadow:
    inset 3px 3px 8px rgba(0, 0, 0, 0.08),
    inset -2px -2px 6px rgba(255, 255, 255, 0.75);
  margin-bottom: 22px;
}

.image-wrap img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.18));
  transition: transform 0.4s ease;
}

.card:hover .image-wrap img {
  transform: scale(1.04) translateY(-3px);
}

.product-name {
  font-size: 22px;
  font-weight: 700;
  color: #1a1d2e;
  letter-spacing: -0.4px;
  margin-bottom: 8px;
  text-align: center;
}

.product-desc {
  font-size: 13.5px;
  color: #6b7080;
  text-align: center;
  line-height: 1.55;
  margin-bottom: 22px;
  font-weight: 400;
  max-width: 220px;
}

.btn {
  width: 100%;
  background: #1a6f8a;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 15px 24px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 18px rgba(26, 111, 138, 0.35);
}

.btn:hover {
  background: #155f78;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(26, 111, 138, 0.45);
}

.btn:active {
  transform: translateY(0);
}

.btn svg {
  transition: transform 0.25s ease;
}

.btn:hover svg {
  transform: translateX(3px);
}