* {
	box-sizing: border-box;
	font-family: 'Roboto', 'Arial', sans-serif;
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
a {
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
}
body {
	max-width: 1300px;
	margin: 0 auto;
	font-family: 'Roboto', 'Arial', sans-serif;
	font-size: 16px;
	background-color: #012315;
	color: #fff;
	padding-top: 60px;
	line-height: 1.6;
}
.conteiner {
	max-width: 1300px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px;
}
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #011D0E;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	padding: 10px 0;
	z-index: 1000;
	text-align: center;
}
.header_conatiner {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 90px;
}
.header_logo img {
	height: 41px;
	width: auto;
	max-width: 200px;
	object-fit: contain;
}
.header_button {
	display: flex;
	gap: 20px;
}
@media (max-width: 768px) {
	.header_button {
		gap: 8px;
	}
}

.btn {
	border: 2px solid #ff2400;
	display: inline-block;
	padding: 12px 24px;
	background-color: #ff2400;
	color: #fff;
	border-radius: 8px;
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease-in-out;
	font-weight: 600;
	font-size: 16px;
	text-align: center;
	min-width: 120px;
}
.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 36, 0, 0.4);
}
@media (max-width: 768px) {
	.btn {
		 width: 100%;
		 text-align: center;
		 padding: 12px;
		 font-size: 14px;
		 min-width: auto;
	}
}
@keyframes glow {
	0% { box-shadow: 0 0 5px #ff2400; }
	50% { box-shadow: 0 0 20px #ff2400; }
	100% { box-shadow: 0 0 5px #ff2400; }
}
.glowing {
	animation: glow 1.5s infinite alternate;
}

.button_1 {
	background-color: #ff2400;
}
.button_2 {
	background-color: transparent;
	color: #ff2400;
	border: 2px solid #ff2400;
}
.button_2:hover {
	background-color: #ff2400;
	color: #fff;
}

h1 {
	font-size: 48px;
	text-align: center;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.2;
	margin-bottom: 30px;
	color: #fff;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
@media (max-width: 768px) {
	h1 {
		font-size: 28px;
		margin-bottom: 20px;
	}
}
h2 {
	font-size: 28px;
	font-weight: 700;
	margin: 30px 0 20px 0;
	color: #fff;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
@media (max-width: 768px) {
	h2 {
		font-size: 24px;
		margin: 25px 0 15px 0;
	}
}

.hero-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin: 30px 0;
	flex-wrap: wrap;
}
.hero-btn-reg, .hero-btn-login {
	font-size: 18px;
	padding: 15px 30px;
	min-width: 150px;
}
.hero-btn-reg {
	background-color: #ff2400;
	border-color: #ff2400;
}
.hero-btn-login {
	background-color: transparent;
	color: #ff2400;
	border-color: #ff2400;
}
.hero-btn-login:hover {
	background-color: #ff2400;
	color: #fff;
}
@media (max-width: 768px) {
	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}
	.hero-btn-reg, .hero-btn-login {
		width: 100%;
		max-width: 280px;
	}
}

.main_conteiner {
	position: relative;
	margin-top: 40px;
}
.main_text {
	display: flex;
	flex-direction: column;
	gap: 25px;
}
main img {
	display: flex;
	align-items: center;
	justify-content: center;
}
.main p {
	font-size: 16px;
	font-weight: 400;
	color: #e0e0e0;
	line-height: 1.7;
	text-align: justify;
}
@media (max-width: 768px) {
	.main p {
		font-size: 15px;
		line-height: 1.6;
		text-align: left;
	}
}

.photo {
	margin: 0 auto;
	width: 70%;
	height: auto;
	max-height: 400px;
	object-fit: cover;
	border-radius: 15px;
	margin-bottom: 40px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.3);
	transition: transform 0.3s ease;
}
.photo:hover {
	transform: scale(1.02);
}
@media (max-width: 768px) {
	.photo {
		width: 100%;
		margin-bottom: 30px;
	}
}
.main h1 {
	margin-bottom: 50px;
}
@media (max-width: 768px) {
	.main h1 {
		margin-bottom: 30px;
	}
}

.cta-section {
	background: linear-gradient(135deg, #053800 0%, #0a5a00 100%);
	padding: 40px;
	border-radius: 20px;
	margin: 40px 0;
	text-align: center;
	border: 2px solid #ff2400;
}
.cta-section h2 {
	color: #fff;
	margin-bottom: 20px;
}
.cta-section p {
	color: #e0e0e0;
	margin-bottom: 30px;
	text-align: center;
}
.cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}
.cta-btn-reg, .cta-btn-login {
	font-size: 18px;
	padding: 15px 30px;
	min-width: 180px;
}
.cta-btn-reg {
	background-color: #ff2400;
	border-color: #ff2400;
}
.cta-btn-login {
	background-color: transparent;
	color: #ff2400;
	border-color: #ff2400;
}
.cta-btn-login:hover {
	background-color: #ff2400;
	color: #fff;
}
@media (max-width: 768px) {
	.cta-section {
		padding: 30px 20px;
		margin: 30px 0;
	}
	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}
	.cta-btn-reg, .cta-btn-login {
		width: 100%;
		max-width: 280px;
	}
}

.popup {
	width: 470px;
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background: #053800;
	color: #fff;
	border-radius: 20px;
	padding: 20px 25px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
	display: flex;
	align-items: center;
	gap: 20px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease-in-out;
	border: 2px solid #ff2400;
}
@media (max-width: 768px) {
	.popup {
		width: 95%;
		padding: 15px;
		gap: 15px;
		border-radius: 15px;
	}
}
.popup_block {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;	
}
@media (max-width: 768px) {
	.popup_block {
		display: flex;
		justify-content: space-around;	
	}
}

.popup.show {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(-10px);
}

.popup-close {
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.7);
	font-size: 24px;
	cursor: pointer;
	position: absolute;
	right: 15px;
	top: 10px;
	transition: color 0.3s ease;
}
.popup-close:hover {
	color: #fff;
}
@media (max-width: 768px) {
	.popup-close {
		font-size: 20px;
		right: 10px;
		top: 8px;
	}
}
.block_txt {
	width: 40%;
	display: flex;
	align-items: center;
	flex-direction: column;
	text-align: center;
}
.block_txt span {
	font-size: 35px;
	color: #ffffff;
	font-weight: 700;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
@media (max-width: 768px) {
	.block_txt span {
		font-size: 24px;
	}
}
.block_txt p {
	color: #fff;
	font-size: 18px;
	font-weight: 500;
}
@media (max-width: 768px) {
	.block_txt p {
		font-size: 14px;
	}
}
.block_btn {
	text-transform: uppercase;
	font-weight: bold;
	font-size: 18px;
}
@media (max-width: 768px) {
	.block_btn {
		font-size: 14px;
	}
}

/* Дополнительные стили для лучшей читаемости */
strong {
	color: #ff2400;
	font-weight: 700;
}

/* Улучшенная адаптивность */
@media (max-width: 480px) {
	.conteiner {
		padding: 10px;
	}
	.header_button {
		flex-direction: column;
		gap: 10px;
	}
	.btn {
		padding: 10px 20px;
		font-size: 14px;
	}
	h1 {
		font-size: 24px;
	}
	h2 {
		font-size: 20px;
	}
	.main p {
		font-size: 14px;
	}
}