* { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'Segoe UI', sans-serif;
      background: #fefefe;
      color: #333;
    }
    header {
      background: linear-gradient(135deg, #2c3e50, #34495e);
      color: white;
      padding: 60px 20px;
      text-align: center;
    }
    header h1 { font-size: 36px; margin-bottom: 10px; }
    header p { font-size: 18px; }

    section {
      padding: 40px 20px;
      max-width: 1100px;
      margin: auto;
      text-align: center;
    }
    h2 {
      margin-bottom: 30px;
      font-size: 28px;
      color: #2c3e50;
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }
    .card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: transform 0.3s ease;
    }
    .card:hover { transform: translateY(-5px); }
    .card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    .card-content {
      padding: 20px;
    }
    .card-content h3 {
      margin-bottom: 10px;
      color: #2c3e50;
    }

    footer {
      background: #2c3e50;
      color: #ccc;
      text-align: center;
      padding: 20px;
      font-size: 14px;
    }
    a {
      color: #f9d342;
      text-decoration: none;
    }

    /* WhatsApp Button */
    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #25d366;
      color: white;
      padding: 12px 20px;
      border-radius: 50px;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
      z-index: 1000;
      transition: background 0.3s ease;
    }
    .whatsapp-float:hover {
      background: #1ebe5d;
    }* { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'Segoe UI', sans-serif;
      background: #fefefe;
      color: #333;
    }
    header {
      background: linear-gradient(135deg, #2c3e50, #34495e);
      color: white;
      padding: 60px 20px;
      text-align: center;
    }
    header h1 { font-size: 36px; margin-bottom: 10px; }
    header p { font-size: 18px; }

    section {
      padding: 40px 20px;
      max-width: 1100px;
      margin: auto;
      text-align: center;
    }
    h2 {
      margin-bottom: 30px;
      font-size: 28px;
      color: #2c3e50;
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }
    .card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: transform 0.3s ease;
    }
    .card:hover { transform: translateY(-5px); }
    .card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    .card-content {
      padding: 20px;
    }
    .card-content h3 {
      margin-bottom: 10px;
      color: ##2c3e50;
    }

    footer {
      background: #2c3e50;
      color: #ccc;
      text-align: center;
      padding: 20px;
      font-size: 14px;
    }
    a {
      color: #f9d342;
      text-decoration: none;
    }

    /* WhatsApp Button */
    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #25d366;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: background 0.3s ease;
    }
    .whatsapp-float:hover {
      background: #1ebe5d;
    }
    .whatsapp-float img {
      width: 28px;
      height: 28px;
    }
	.card.bg-card {
  position: relative;
  color: white;
  background-size: cover;
  background-position: center;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.3s ease;
}
.card.bg-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 12px;
}
.card.bg-card .card-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  background: rgb(0 0 0 / 70%);
  font-weight: bold;
}
header {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.header-inner {
  display: flex;
  align-items: center;
}

.header-inner img {
  height: 150px;
  
}

.header-inner h1 {
  margin: 0;
}

.header-inner p,
.header-inner h3 {
  margin: 5px 0 0 0;
}
.site-header {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  height: 50px;
}

.header-text h1 {
  margin: 0;
}

.header-text p,
.header-text h3 {
  margin: 5px 0 0 0;
}

/* 📱 Мобильная версия */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo {
    margin-bottom: 10px;
  }
}

