@font-face {
  font-family: "SFPro";
  src: url("./fonts/SF-Pro-Display-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "SFPro";
  src: url("./fonts/SF-Pro-Display-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "SFPro";
  src: url("./fonts/SF-Pro-Display-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "SFPro";
  src: url("./fonts/SF-Pro-Display-Semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}

* {
  margin: 0;
  font-family: "SFPro", sans-serif;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
	background-color: rgba(255, 255, 255, 1);
}
main {
	display: flex;
	gap: 96px;
	flex-direction: column;
	margin: 96px auto;
	width: 95%;
	max-width: 1440px;
}

header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 95%;
	max-width: 1440px;
	margin: 24px auto;
}
nav {
	ul {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 32px;
		list-style: none;
		a {
			font-size: 16px;
			font-weight: 400;
			color: rgba(0, 0, 0, 1);
		}
	}
}
.button-download { 
	padding: 11px 16px;
	background-color: rgba(0, 108, 180, 1);
	color: white;
	width: max-content;
}

.bly-line {
	width: 100%;
	background-color: rgba(0, 108, 180, 1);
	padding: 14px;
	text-align: center;
	justify-content: center;
	color: white;
}


.create-inst {
	display: flex;
	justify-content: space-between;
	align-items: start;
}

.create-inst img {
	max-width: 45%;
	height: auto;
	object-fit: contain;
}

.text-content {
	width: 50%;
	display: flex;
	flex-direction: column;
	gap: 16px;
	h2 {
		font-weight: 500;
		font-size: 48px;
	}
	p {
		font-weight: 400;
		font-size: 18px;
	}
}

.list-steps {
	background-color: rgba(243, 243, 243, 1);
	padding: 24px;
	ul {
		list-style: square;
		display: flex;
		flex-direction: column;
		gap: 16px;
		li {
			font-weight: 400;
			font-size: 18px;
			list-style-position: inside;

		}
	}
}

.learn-more-link {
	margin-top: auto;
	border: 1px solid rgba(0, 108, 180, 1);
	color: rgba(0, 108, 180, 1);
	width: max-content;
	padding: 11px 16px;
	
}

.faq {
	background-color: rgba(238, 238, 238, 1);	
}

.faq-content {
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 36px;
}

.faq-question {
	h2 {
		font-weight: 400;
		font-size: 48px;
		margin-bottom: 24px;
	}
	p {
		font-style: italic;
		font-weight: 500;
	}
}

.support-info {
	display: flex;
	justify-content: space-between;
	align-items: start;
}

.support-info img {
	max-width: 45%;
	height: auto;
	object-fit: contain;
}

.support-info-content {
	width: 50%;
	display: flex;
	flex-direction: column;
	gap: 32px;
	h2 {
		font-weight: 500;
		font-size: 48px;
	}
	p {
		font-weight: 400;
		font-size: 18px;
	}
}

footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 95%;
	max-width: 1440px;
	margin: 0 auto;
	margin-bottom: 122px;
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
	header {
		flex-direction: column;
		gap: 16px;
		align-items: flex-start;
	}

	header nav ul {
		gap: 16px;
		flex-wrap: wrap;
	}

	header .button-download {
		align-self: flex-start;
	}

	main {
		gap: 48px;
		margin: 48px auto;
	}

	.create-inst {
		flex-direction: column;
		gap: 32px;
	}

	.create-inst img {
		max-width: 100%;
		width: 100%;
		height: auto;
	}

	.text-content {
		width: 100%;
	}

	.text-content h2 {
		font-size: 32px;
	}

	.faq {
		display: flex;
		flex-direction: column;
	}

	.faq img {
		width: 100%;
		height: auto;
	}

	.faq-question h2 {
		font-size: 32px;
	}

	.support-info {
		flex-direction: column;
		gap: 32px;
	}

	.support-info img {
		max-width: 100%;
		width: 100%;
		height: auto;
		order: -1;
	}

	.support-info-content {
		width: 100%;
	}

	.support-info-content h2 {
		font-size: 32px;
	}

	footer {
		flex-direction: column;
		gap: 24px;
		align-items: flex-start;
		margin-bottom: 48px;
	}

	footer nav ul {
		gap: 16px;
		flex-wrap: wrap;
	}
}