*{
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  background: #ffffff;
  color: #1f1f1f;
}

/* PAGE CONTAINER */
.downloads-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* HEADER */
.page-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
}

.page-header h1 {
  font-size: 34px;
  font-weight: 600;
  color: #777;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 16px;
  color: #888;
  line-height: 1.6;
}

/* DIVIDER */
.divider {
  height: 1px;
  background: #999;
  opacity: 0.6;
  margin: 40px 0;
}

/* CONTENT */
.downloads-content {
  display: flex;
  justify-content: flex-start;
}

/* CATALOG CARD */
.catalog-card {
  display: flex;
  gap: 40px;
  max-width: 900px;
}

.catalog-card img {
  width: 280px;
  height: auto;
  border: 1px solid #ddd;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.catalog-info h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.catalog-info p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.download-btn {
  display: inline-block;
  background: #6b78ff;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .catalog-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .catalog-card img {
    width: 220px;
  }
}
