.infos-page {
  max-width: 1200px;
}

.infos-grid {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.info-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 24px;
  padding: 34px 32px;
  min-height: 280px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}


.info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(169,113,66,0.45);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}



.info-icon {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin-bottom: 24px;
}

.info-card h2 {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.55rem;
  margin: 0 0 18px;
  color: #f5ead2;
}

.info-card p {
  font-size: 1rem;
  line-height: 1.45;
  margin: 0 0 14px;
  color: rgba(245,234,210,0.82);
}

.info-card strong {
  color: #f5ead2;
}


@media (max-width: 899px) {

  .infos-page {
    padding: 10px 20px 40px;
  }

  .page-title {
    font-size: 2.4rem;
    text-align: center;
    margin: 36px 0 18px;
  }

  .infos-grid {
    margin-top: 42px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .info-card {
    width: 92%;
    min-height: auto;
    padding: 26px 24px;
    border-radius: 22px;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.05);
      animation: floatCard 4s ease-in-out infinite;
  }

  .info-card:hover {
  transform: inherit;
  border-color: rgba(255,255,255,0.05);
  box-shadow: none;
}
  
  .info-card:nth-child(odd) {
    align-self: flex-start;
  }

  .info-card:nth-child(even) {
    align-self: flex-end;
      animation-delay: 1.5s;
  }

.info-card:nth-child(1) { transform: rotate(-1.5deg); }
.info-card:nth-child(2) { transform: rotate(1.8deg); }
.info-card:nth-child(3) { transform: rotate(-2.2deg); }
.info-card:nth-child(4) { transform: rotate(2deg); }
.info-card:nth-child(5) { transform: rotate(-1.8deg); }
.info-card:nth-child(6) { transform: rotate(1.5deg); }
  .info-card:hover {
    transform: none;
  }

  .info-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
  }

  .info-card h2 {
    font-size: 1.35rem;
    margin-bottom: 14px;
  }

  .info-card p {
    font-size: 1rem;
    line-height: 1.45;
    margin-bottom: 12px;
  }
  .price-list {
  line-height: 1.8;
  color: #f5ead2;
}

.price-list strong {
  color: #a97142;
  display: inline-block;
  min-width: 70px;
}
  
  .info-card a {
  color: #a97142;
  text-decoration: none;
  font-weight: 700;
  transition: opacity 0.2s;
}

.info-card a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.info-card a:visited {
  color: #a97142;
}
  



@keyframes floatCard {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -4px;
  }
}
}