@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Główny kontener - 100% szerokości bez żadnych marginesów bocznych */
.testimonial-section {
  width: 100%;
  margin: 60px 0; /* Margines góra/dół dla oddzielenia od innych modułów */
  padding: 0; /* Całkowite usunięcie marginesów bocznych */
  box-sizing: border-box;
}

/* Biały box */
.info-grid-container {
  width: 100%;
  min-height: 450px; 
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  border-radius: 15px;
  display: flex;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

/* Układ kolumn wewnątrz boxa */
.info-grid-content {
  display: flex;
  width: 100%;
  /* 8% paddingu wewnętrznego trzyma tekst z dala od brzegów samego boxa */
  padding: 70px 8% 90px 8%; 
  justify-content: space-between;
  gap: 30px; 
}

.info-column {
  flex: 1;
}

.info-header {
  font-size: 20px;
  font-weight: 600;
  color: #2d3e50;
  margin-bottom: 35px;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.info-icon {
  display: flex;
  align-items: center;
  fill: #CB0C2D;
  flex-shrink: 0;
}

.info-text {
  font-size: 18px;
  color: #333333;
  line-height: 1.6;
}

/* Animacja */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsywność dla mobile */
@media (max-width: 770px) {
  .info-grid-content {
    flex-direction: column;
    padding: 50px 30px 60px 30px;
    gap: 45px;
  }
  .info-grid-container {
    min-height: auto;