body.visuals-page {
  background: #f5f5f5;
  font-family: 'Merriweather', serif;
  color: #222;
  padding-top: 100px;
}

.visuals-container {
  max-width: 1400px;
  margin: auto;
  padding: 40px 30px 100px;
}

.visuals-title {
  font-family: 'Orbitron', sans-serif;
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 60px;
  color: #222;
}

.visual-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-bottom: 50px;
}

.visual-item.reverse {
  flex-direction: row-reverse;
}

.visual-image img {
  width: 380px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.visual-text {
  max-width: 400px;
}

.visual-text h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #222;
}

.visual-type {
  font-size: 20px;
  color: #666;
  margin-bottom: 25px;
}

.btn-visual {
  display: inline-block;
  padding: 12px 28px;
  background: #ff9800;
  color: black;
  text-decoration: none;
  border-radius: 24px;
  font-weight: 600;
}

.btn-visual:hover {
  background: #e68900;
}

.section-title {
  text-align: center;
  font-size: 34px;
  margin:80px 0 50px;
  color: #222;
}

@media (max-width: 900px) {

  .visual-item,
  .visual-item.reverse {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .visual-image img {
    width: 90%;
    max-width: 380px;
  }

  .visual-text h2 {
    font-size: 30px;
  }
}
