.about-me {
  background-color: #f4f4f400;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.about-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: justify;
}

.about-left {
  flex: 1;
  min-width: 300px;
}

.about-left h2 {
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 10px;
}

.about-left h3 {
  font-size: 1.4rem;
  color: #444;
  margin-bottom: 20px;
}

.about-left p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-right img {
  width: 100%;
  max-width: 550px;  /* 🔥 powiększone – było 400px */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: justify;
  }
  .about-right img {
    max-width: 100%; /* 🔥 pełna szerokość na mobile */
  }
}

.about-me.reverse .about-container {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .about-me.reverse .about-container {
    flex-direction: column;
  }
}

/* Info row */
.info-row {
  background-color: #f9f9f900;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.info-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}

.info-cell {
  flex: 1 1 22%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  box-sizing: border-box;
  min-width: 200px;
}

.info-cell img {
  width: 100%;
  max-width: 220px; /* 🔥 było 64px */
  height: auto;
  object-fit: contain;
}

.info-cell h3 {
  font-size: 1.3rem;
  color: #003366;
  margin: 0 0 16px 0;
  font-weight: 700;
  font-family: Arial, sans-serif;
  text-align: center;
  max-width: 90%;
}

.info-cell p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  margin: 0 0 24px 0;
  text-align: justify;
  font-family: Arial, sans-serif;
  max-width: 90%;
}

/* Responsywność info */
@media (max-width: 992px) {
  .info-cell {
    flex: 1 1 45%;
  }
}
@media (max-width: 576px) {
  .info-cell {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 0 10px;
  }
  .info-cell img {
    max-width: 100%; /* 🔥 obrazki pełnej szerokości na mobile */
  }
}

/* Individual columns */
.individual-columns {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
}

.individual-columns .column {
  flex: 1 1 300px;
  background-color: #f9f9f900;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.individual-columns .column:hover {
  transform: translateY(-5px);
}

.individual-columns h3 {
  color: #003366;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.individual-columns p {
  color: #333;
  line-height: 1.6;
  font-size: 1rem;
  text-align: justify;
}

@media (max-width: 768px) {
  .individual-columns {
    flex-direction: column;
    gap: 20px;
  }
}