:root {
  --bg: #0b1220;
  --card: #111c33;
  --text: #eaf0ff;
  --muted: rgba(234, 240, 255, 0.78);
  --accent: #22c55e;
  --accent-2: #3b82f6;
  --border: rgba(255, 255, 255, 0.10);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  background: #ffffff;
  color: #111827;
}


.site-logo {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 170px;
  height: auto;
  z-index: 9999;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}





@media (max-width: 420px) {
  .site-logo {
    width: 130px;
    top: 10px;
    left: 10px;
    right: auto;
  }
}





.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 16px 10px;
}

.header {
  text-align: center;
  margin-bottom: 22px;
}

.header .subtitle {
  margin: 8px auto 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
}


.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 760px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.card {
  background: rgba(17, 28, 51, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}



.card__image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

@media (max-width: 420px) {
  .card__image {
    height: 210px;
  }
}

.card__body {
  padding: 16px;
}

.card__title {
  margin: 0;
  font-size: 1.25rem;
}

.card__text {
  margin: 8px 0 14px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
}


.card__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  width: 100%;
  background: linear-gradient(135deg, var(--accent) 0%, #16a34a 100%);
  color: #053019;
  text-decoration: none;
  font-weight: 700;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.footer {
  padding: 18px 16px 28px;
  text-align: center;
  background: #000;
  color: rgba(255, 255, 255, 0.9);
}



.footer h4,
.footer h5,
.footer h6 {
  margin: 6px 0;
  font-weight: 500;
}
