* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0f0f0f;
  color: white;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1400px;
  margin: auto;
  padding: 40px 20px;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.title-section h1 {
  font-size: 40px;
  margin-bottom: 8px;
}

.title-section p {
  color: #aaa;
  font-size: 16px;
}

/* Logo */
.logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 12px;
  background: white;
  padding: 5px;
}

/* Line */
.header-line {
  width: 100%;
  height: 1px;
  background: #2a2a2a;
  margin: 25px 0 40px;
}

/* Brosur */
.brosur-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.brosur-list img {
  width: 100%;
  border-radius: 20px;
  transition: 0.3s;
  cursor: pointer;
}

.brosur-list img:hover {
  transform: scale(1.02);
}

/* Desktop */
@media (min-width: 768px) {
  .brosur-list {
    grid-template-columns: repeat(3, 1fr);
  }
}