<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Знать, уметь, помочь — обучение первой помощи</title>
<style>
:root {
--primary: #d32f2f; /* Красный цвет Красного Креста */
--secondary: #2e7d32; /* Зеленый акцент */
--light: #f5f5f5;
--dark: #1a1a1a;
--white: #ffffff;
}
body { font-family: Arial, sans-serif; color: var(--dark); margin: 0; padding: 0; line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
header { background: var(--primary); color: var(--white); padding: 20px 0; }
nav ul { list-style: none; display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
nav a { color: var(--white); text-decoration: none; font-weight: bold; }
section { padding: 60px 0; }
h1, h2, h3 { margin-top: 0; }
.hero { background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('img/hero-bg.jpg'); background-size: cover; color: var(--white); text-align: center; padding: 100px 20px; }
.btn { display: inline-block; background: var(--secondary); color: var(--white); padding: 15px 30px; text-decoration: none; border-radius: 5px; font-weight: bold; transition: background 0.3s; }
.btn:hover { background: #388e3c; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: var(--light); padding: 30px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.steps ol { counter-reset: step; }
.steps li { counter-increment: step; list-style: none; margin-bottom: 20px; }
.steps li::before { content: counter(step) ". "; font-weight: bold; color: var(--primary); }
.partners img { max-height: 60px; object-fit: contain; }
form { display: flex; flex-direction: column; gap: 15px; max-width: 500px; }
input, textarea { padding: 12px; border: 1px solid #ccc; border-radius: 4px; }
footer { background: #333; color: #fff; padding: 30px 0; text-align: center; }
@media (max-width: 768px) { nav ul { flex-direction: column; align-items: center; } }
</style>
</head>
<body>
<header>
<div class="container">
<nav>
<ul>
<li><a href="#about">О проекте</a></li>
<li><a href="#audience">Кому важно</a></li>
<li><a href="#program">Программа</a></li>
<li><a href="#contacts">Контакты</a></li>
</ul>
</nav>
</div>
</header>
<section class="hero">
<div class="container">
<h1>Знать, уметь, помочь</h1>
<p>Обучение первой помощи при поддержке Администрации Екатеринбурга</p>
<br/>
<a href="#contacts" class="btn">Подать заявку на обучение</a>
</div>
</section>
<section id="about">
<div