* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: 'Arial', sans-serif;
	line-height: 1.6;
	color: #333;
}
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
/* Шапка */
.header {
	background: #fff;
	padding: 20px 0;
	border-bottom: 1px solid #eee;
	position: sticky;
	top: 0;
	z-index: 100;
}
.logo {
	font-size: 1.8rem;
	color: #2c3e50;
}
.nav {
	display: flex;
	gap: 30px;
	margin-top: 15px;
}
.nav a {
	text-decoration: none;
	color: #555;
	font-weight: 500;
	transition: color 0.3s;
}
.nav a:hover {
	color: #3498db;
}
/* Главный экран */
.hero {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	text-align: center;
	padding: 100px 20px;
}
.hero h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
}
.highlight {
	color: #ffd700;
}
.hero p {
	font-size: 1.2rem;
	margin-bottom: 30px;
}
/* Кнопки */
.btn {
	display: inline-block;
	background: #3498db;
	color: white;
	padding: 12px 30px;
	text-decoration: none;
	border-radius: 5px;
	font-weight: bold;
	transition: background 0.3s;
}
.btn:hover {
	background: #2980b9;
}
/* Общие секции */
.section {
	padding: 80px 0;
}
.bg-light {
	background: #f9f9f9;
}
h3 {
	text-align: center;
	margin-bottom: 50px;
	font-size: 2rem;
	color: #2c3e50;
}
/* Обо мне */
.about-content {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 40px;
	align-items: center;
}
.profile-img {
	width: 50%;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	align: right
