
.brand-gallery {
  padding: 40px 0;
  text-align: center;
}

.brand-gallery h2 {
  font-size: 24px;
  margin-bottom: 30px;
  font-family: 'Barlow Semi Condensed', sans-serif;
  color: red;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px;
  justify-items: center;
}

.brand {
  background-color: rgba(255,255,255,0.05);
  padding: 15px;
  border-radius: 8px;
  transition: transform 0.3s ease, background 0.3s;
  text-align: center;
}

.brand:hover {
  transform: scale(1.05);
  background-color: rgba(255,255,255,0.08);
}

.brand img {
  max-width: 80px;
  height: auto;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 3px rgba(0,0,0,0.5));
}

.brand span {
  display: block;
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  font-family: 'Barlow Semi Condensed', sans-serif;
}

body {
  background-color: #121212;
  color: white;
  font-family: Arial, sans-serif;
}

.container {
  padding: 20px;
}

table {
  width: 100%;
  background-color: #1e1e1e;
  color: #fff;
  border-collapse: collapse;
}

th, td {
  padding: 10px;
  text-align: center;
  border: 1px solid #333;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li::before {
  content: '✔';
  margin-right: 8px;
  color: #e00;
}

/* Mobil (telefon) uyumu */
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  nav ul li a {
    font-size: 16px;
  }

  .slider {
    height: 200px;
  }

  header img {
    height: 30px;
  }

  footer {
    font-size: 14px;
  }
}

