* {
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

header {
	background-color: #f4f4f4; /* Колір фону нейтральний */
	color: #333;
	padding: 20px 0;
}
.header-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
}
.logo {
	font-size: 1.2rem;
	font-weight: bold;
	color: #e3642b; /* Колір для логотипу */
	text-transform: uppercase;
}
.nav {
	display: flex;
	gap: 30px;
}
.nav a {
	font-size: 1rem;
	color: #333;
	text-decoration: none;
	transition: color 0.3s ease;
}
.nav a:hover {
	color: #e3642b; /* Колір при наведенні на лінк */
}
.cta-button {
	background-color: #e3642b;
	color: white;
	padding: 12px 24px;
	font-size: 1.125rem;
	border-radius: 50px;
	text-decoration: none;
	transition: background-color 0.3s;
}
.cta-button:hover {
	background-color: #efce6b; /* Колір при наведенні на кнопку */
}

/* Стилі для модального вікна */
.modal {
	display: none; /* Модальне вікно приховано за замовчуванням */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5); /* Напівпрозоре тло */
	z-index: 1000;
	justify-content: center;
	align-items: center;
}
.modal-content {
	background-color: white;
	padding: 20px;
	border-radius: 10px;
	width: 90%;
	max-width: 400px;
	text-align: center;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.modal h2 {
	font-size: 1.5rem;
	margin-bottom: 20px;
}
.modal p {
	font-size: 1rem;
	margin-bottom: 20px;
}
.modal button {
	background-color: #e3642b;
	color: white;
	padding: 12px 24px;
	border-radius: 50px;
	font-size: 1rem;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s;
}
.modal button:hover {
	background-color: #efce6b;
}

/* Стилі для мобільного бургер-меню */
.burger-menu {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}
.burger-menu div {
	width: 30px;
	height: 3px;
	background-color: #333;
	transition: all 0.3s ease;
}
.nav-mobile {
	display: none;
	flex-direction: column;
	gap: 15px;
	background-color: #f4f4f4;
	position: absolute;
	top: 80px;
	right: 0;
	width: 200px;
	padding: 20px;
	border-radius: 8px;
}
.nav-mobile a {
	font-size: 1rem;
	color: #333;
	text-decoration: none;
	transition: color 0.3s ease;
}
.nav-mobile a:hover {
	color: #e3642b;
}
.burger-menu.active div:nth-child(1) {
	transform: rotate(45deg);
	transform-origin: 3px 3px;
}
.burger-menu.active div:nth-child(2) {
	opacity: 0;
}
.burger-menu.active div:nth-child(3) {
	transform: rotate(-45deg);
	transform-origin: 3px 3px;
}
.burger-menu.active + .nav-mobile {
	display: flex;
}

/* Медіа-запити для адаптивності */
@media (max-width: 768px) {
	.nav {
		display: none;
	}
	.burger-menu {
		display: flex;
	}
}

.hero {
	background: linear-gradient(to right, #333, #444);
	color: white;
	padding: 80px 20px;
}
.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.hero-text {
	max-width: 600px;
	margin-bottom: 40px;
}
.hero-title {
	font-size: 3rem;
	font-weight: bold;
	margin-bottom: 20px;
}
.hero-description {
	font-size: 1.25rem;
	margin-bottom: 20px;
}
.cta-button {
	background-color: #e3642b;
	color: white;
	padding: 12px 24px;
	font-size: 1.125rem;
	border-radius: 50px;
	text-decoration: none;
	transition: background-color 0.3s;
}
.cta-button:hover {
	background-color: #efce6b;
}
.hero-image {
	width: 100%;
	max-width: 500px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-image img {
	width: 100%;
}
@media (min-width: 768px) {
	.hero-container {
		flex-direction: row;
		text-align: left;
	}
	.hero-text {
		margin-right: 40px;
		text-align: left;
	}
}

.section-useful {
	background-color: #f5f5f5;
	color: #333;
	padding: 80px 20px;
}
.section-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.section-title {
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 40px;
}
.section-description {
	font-size: 1.125rem;
	margin-bottom: 30px;
	line-height: 1.6;
}
.useful-steps {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.useful-step {
	background-color: #ffffff;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	text-align: left;
	max-width: 400px;
	margin: 0 auto;
}
.useful-step h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 20px;
}
.useful-step p {
	font-size: 1rem;
	line-height: 1.6;
}
@media (min-width: 768px) {
	.useful-steps {
		flex-direction: row;
		justify-content: space-between;
	}
}

.section-about {
	background-color: #f8f8f8;
	color: #333;
	padding: 80px 20px;
}
.section-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.section-title {
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 40px;
}
.section-description {
	font-size: 1.125rem;
	margin-bottom: 30px;
	line-height: 1.6;
}
.team-members {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.team-member {
	background-color: #ffffff;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	text-align: left;
	max-width: 350px;
	margin: 0 auto;
}
.team-member h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 20px;
}
.team-member p {
	font-size: 1rem;
	line-height: 1.6;
}
.team-member img {
	width: 100%;
	height: auto;
	border-radius: 50%;
	margin-bottom: 15px;
}
@media (min-width: 768px) {
	.team-members {
		flex-direction: row;
		justify-content: space-between;
	}
}
.section-info {
	background-color: #f9f9f9;
	color: #333;
	padding: 80px 20px;
}
.section-container {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}
.section-title {
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 40px;
}
.section-description {
	font-size: 1.125rem;
	margin-bottom: 50px;
	line-height: 1.6;
}
.info-cards {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.info-card {
	background-color: #ffffff;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	text-align: left;
	max-width: 400px;
	margin: 0 auto;
}
.info-card h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 20px;
}
.info-card p {
	font-size: 1rem;
	line-height: 1.6;
}
@media (min-width: 768px) {
	.info-cards {
		flex-direction: row;
		justify-content: space-between;
	}
}

footer {
	background-color: #333;
	color: #fff;
	padding: 40px 20px;
	text-align: center;
}
.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.footer-logo {
	font-size: 2rem;
	font-weight: bold;
	color: #e3642b; /* Колір для логотипу */
	text-transform: uppercase;
}
.footer-nav {
	display: flex;
	justify-content: center;
	gap: 40px;
}
.footer-nav a {
	color: #fff;
	font-size: 1rem;
	text-decoration: none;
	transition: color 0.3s ease;
}
.footer-nav a:hover {
	color: #e3642b; /* Колір при наведенні на лінк */
}
.footer-info {
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-align: center;
}
.footer-info p {
	font-size: 0.875rem;
}
.footer-info a {
	color: #e3642b;
	text-decoration: none;
}

/* Адаптивність для мобільних пристроїв */
@media (max-width: 768px) {
	.footer-nav {
		flex-direction: column;
		gap: 20px;
	}
	.footer-info {
		text-align: center;
	}
}

.subscription-section {
	background-color: #333;
	color: white;
	padding: 60px 20px;
	text-align: center;
}
.subscription-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
}
.subscription-title {
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 20px;
}
.subscription-description {
	font-size: 1.125rem;
	margin-bottom: 30px;
}
.subscription-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
}
.subscription-form input[type='email'] {
	padding: 15px;
	font-size: 1rem;
	border: none;
	border-radius: 50px;
	width: 100%;
	margin-bottom: 10px;
}
.subscription-form button {
	background-color: #e3642b;
	color: white;
	padding: 12px 24px;
	font-size: 1.125rem;
	border-radius: 50px;
	width: 100%;
	cursor: pointer;
	border: none;
	transition: background-color 0.3s;
}
.subscription-form button:hover {
	background-color: #efce6b;
}

/* Стиль для повідомлення після підписки */
.thank-you-message {
	display: none;
	font-size: 1.5rem;
	color: #e3642b;
	font-weight: bold;
}

/* Адаптивність для мобільних пристроїв */
@media (max-width: 768px) {
	.subscription-form {
		width: 100%;
	}
	.subscription-title {
		font-size: 2rem;
	}
	.subscription-description {
		font-size: 1rem;
	}
}

.cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #333;
	color: white;
	padding: 15px;
	text-align: center;
	font-size: 1rem;
	z-index: 1000;
	display: none; /* За замовчуванням не показуємо */
}
.cookie-consent button {
	background-color: #e3642b;
	color: white;
	padding: 10px 20px;
	font-size: 1rem;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	margin-left: 15px;
}
.cookie-consent button:hover {
	background-color: #efce6b;
}

.contact-section {
	background-color: #f4f4f4;
	color: #333;
	padding: 60px 20px;
	text-align: center;
}
.contact-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 40px;
	align-items: center;
}
.contact-title {
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 20px;
	color: #333;
}
.contact-description {
	font-size: 1.125rem;
	margin-bottom: 30px;
	color: #555;
	line-height: 1.6;
	max-width: 900px;
}

/* Стилі для контактної інформації */
.contact-info {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px;
}
.contact-item {
	background-color: white;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	width: 100%;
	max-width: 350px;
	text-align: left;
	transition: all 0.3s ease;
}
.contact-item:hover {
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-item h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 20px;
	color: #e3642b;
}

.contact-item p {
	font-size: 1rem;
	line-height: 1.6;
}

.contact-item a {
	color: #e3642b;
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-item a:hover {
	color: #d2552a;
}

/* Медіа-запити для адаптивності */
@media (max-width: 768px) {
	.contact-info {
		flex-direction: column;
		align-items: center;
	}

	.contact-title {
		font-size: 2rem;
	}

	.contact-description {
		font-size: 1rem;
	}

	.contact-item {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.contact-title {
		font-size: 1.8rem;
	}
	.contact-description {
		font-size: 0.95rem;
	}
}

.contact-container-section {
	background-color: #f4f4f4;
	color: #333;
	padding: 60px 20px;
	text-align: center;
}
.contact-main-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 40px;
	align-items: center;
}
.contact-heading {
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 20px;
	color: #333;
}
.contact-subheading {
	font-size: 1.125rem;
	margin-bottom: 30px;
	color: #555;
	line-height: 1.6;
	max-width: 900px;
}

/* Стилі для форми */
.contact-form-wrapper {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	background-color: white;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.contact-form-wrapper input,
.contact-form-wrapper textarea {
	padding: 15px;
	font-size: 1rem;
	border: 1px solid #ccc;
	border-radius: 5px;
	width: 100%;
}
.contact-form-wrapper button {
	background-color: #e3642b;
	color: white;
	padding: 12px 24px;
	font-size: 1.125rem;
	border-radius: 50px;
	cursor: pointer;
	border: none;
	transition: background-color 0.3s;
}
.contact-form-wrapper button:hover {
	background-color: #efce6b;
}

/* Стилі для модального вікна */
.modal-overlay {
	display: none; /* Модальне вікно приховано */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5); /* Напівпрозоре тло */
	z-index: 1000;
	justify-content: center;
	align-items: center;
}
.modal-box {
	background-color: white;
	padding: 20px;
	border-radius: 10px;
	width: 80%;
	max-width: 400px;
	text-align: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.modal-box h2 {
	font-size: 1.5rem;
	margin-bottom: 20px;
}
.modal-box p {
	font-size: 1rem;
	margin-bottom: 20px;
}
.modal-box button {
	background-color: #e3642b;
	color: white;
	padding: 12px 24px;
	font-size: 1.125rem;
	border-radius: 50px;
	border: none;
	cursor: pointer;
}

/* Адаптивність для мобільних пристроїв */
@media (max-width: 768px) {
	.contact-main-container {
		padding: 20px;
	}
	.contact-heading {
		font-size: 2rem;
	}
	.contact-subheading {
		font-size: 1rem;
	}
}

.privacy-policy-section {
	background-color: #f4f4f4;
	color: #333;
	padding: 60px 20px;
	text-align: center;
}
.privacy-policy-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 40px;
	align-items: center;
}
.privacy-policy-title {
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 20px;
	color: #333;
}
.privacy-policy-description {
	font-size: 1.125rem;
	margin-bottom: 30px;
	color: #555;
	line-height: 1.6;
	max-width: 900px;
}
.privacy-policy-content {
	background-color: white;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	width: 100%;
	max-width: 900px;
	text-align: left;
	line-height: 1.8;
}
.privacy-policy-content h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 20px;
	color: #e3642b;
}
.privacy-policy-content p {
	font-size: 1rem;
	margin-bottom: 20px;
}
.privacy-policy-content ul {
	list-style-type: disc;
	margin-left: 20px;
}
.privacy-policy-content li {
	margin-bottom: 10px;
}

/* Медіа-запити для адаптивності */
@media (max-width: 768px) {
	.privacy-policy-title {
		font-size: 2rem;
	}
	.privacy-policy-description {
		font-size: 1rem;
	}
}
.terms-section {
	background-color: #f4f4f4;
	color: #333;
	padding: 60px 20px;
	text-align: center;
}
.terms-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 40px;
	align-items: center;
}
.terms-title {
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 20px;
	color: #333;
}
.terms-description {
	font-size: 1.125rem;
	margin-bottom: 30px;
	color: #555;
	line-height: 1.6;
	max-width: 900px;
}
.terms-content {
	background-color: white;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	width: 100%;
	max-width: 900px;
	text-align: left;
	line-height: 1.8;
}
.terms-content h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 20px;
	color: #e3642b;
}
.terms-content p {
	font-size: 1rem;
	margin-bottom: 20px;
}
.terms-content ul {
	list-style-type: disc;
	margin-left: 20px;
}
.terms-content li {
	margin-bottom: 10px;
}

/* Медіа-запити для адаптивності */
@media (max-width: 768px) {
	.terms-title {
		font-size: 2rem;
	}
	.terms-description {
		font-size: 1rem;
	}
}
