body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to bottom, #6a1b9a 0%, #9c27b0 100%);
  color: white;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo {
  height: 100px;
}

nav a {
  margin: 0 10px;
  color: white;
  text-decoration: none;
}

section {
  padding: 60px 20px;
  text-align: center;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px;
  gap: 20px;
}

.card {
  background-color: #fff176;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 20px;
  width: 300px;
  text-align: center;
  cursor: pointer;
}

.card h3,
.card p {
  color: #000; /* ← Чёрный текст внутри жёлтых карточек */
}

.card.raised {
  margin-top: -25px;
  z-index: 1;
  position: relative;
}

footer {
  text-align: center;
  padding: 40px 20px;
  background-color: #eee;
}

.social-icons img {
  height: 30px;
  margin: 0 10px;
}

.elegant-logo {
  display: block;
  margin: 20px auto 0;
  height: 50px;
}

.support-button {
  background-color: #6a4da4;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  margin-left: 5px;
  font-weight: bold;
}

.support-button:hover {
  background-color: #553c91;
}
