.trust-section {
   padding: 80px 20px;
  background-color: #fff8e1;
  color: #333;
  font-family: Arial, sans-serif;
}

.trust-container {
  max-width: 1200px;
  margin: auto;
}

/* BAŞLIK */
.trust-header {
  text-align: center;
  margin-bottom: 60px;
  flex: 1 1 300px;
  background-color: #fff3d6;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.trust-header:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.trust-header h2 {
  font-size: 2rem;
  color: #b88a00;
  margin-bottom: 10px;
}

.trust-header p {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 30px;
}

/* SERTİFİKALAR */
.certificates {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

.cert-item {
  width: auto;
  height: 130px;
  padding: 10px;
  margin-top: 20px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.3s;
}

.cert-item img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  opacity: 0.85;
  transition: all 0.3s;
  margin-top: 30px;
  background: #fff;
  padding: 14px;
  border-radius: 50%;
  box-shadow:
    0 0 0 4px #f2b705,
    0 0 20px rgba(242,183,5,0.6),
    0 10px 22px rgba(0,0,0,0.18);
}

.cert-item span {

 
  text-align: center;
    font-size: 0.9rem;
  font-weight: 700;
  color: #b88a00;              /* altın ton */
  letter-spacing: 0.4px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.cert-item:hover {
  transform: translateY(-6px);
}

.cert-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 576px) {
  .certificates {
    display: grid;
    grid-template-columns: 1fr; /* 🔒 2’li sabit */
    gap: 32px; /* 🔥 çarpışmayı önleyen asıl şey */
  }

  .cert-item {
    width: 100%;
    height: auto;
    padding: 10px 0;
  }

  .cert-item img {
    width: 200px;   /* ⬅️ büyüttük */
    height: 200px;
    padding: 10px;
    box-shadow:
      0 0 0 3px #f2b705,
      0 0 14px rgba(242,183,5,0.5);
  }

  .cert-item span {
    font-size: 0.9rem;
  }
}

.press-header{
  text-align: center;
  margin-bottom: 60px;
  flex: 1 1 300px;
  background-color: #fff3d6;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s; 
}

.press-header:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}


/* BİLGİ SATIRI */
.info-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.info-item{
  text-align: center;
  flex: 1 1 300px;
  background-color: #fff3d6;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s; 
}

.info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.info-item .icon {
  font-size: 2.2rem;
  display: inline-block;
}

.info-item h4 {
  color: #b88a00;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.info-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .info-line {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .info-line {
    grid-template-columns: 1fr;
  }
}