html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

a:hover {
	border: 0;
}

body,
input,
button,
textarea {
	font-family: 'Montserrat', sans-serif;

}

input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

body {}

body a {
	text-decoration: none;
}

*,
*:before,
*:after {
	box-sizing: border-box;
}
/*Header */
.global-header-section {
	background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
	padding: 15px 0;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.logo-section .brand-logo {
	font-size: 1.8rem;
	font-weight: 700;
	text-decoration: none;
	color: #e94560;
	text-shadow: 0 0 10px #e94560, 0 0 20px #e94560;
	transition: text-shadow 0.3s ease;
}

.logo-section .brand-logo:hover {
	text-shadow: 0 0 15px #e94560, 0 0 30px #e94560;
}

.main-navigation .nav-list {
	display: flex;
	gap: 25px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.main-navigation .nav-link {
	color: #fff;
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: 500;
	position: relative;
	transition: color 0.3s ease;
}

.main-navigation .nav-link:hover {
	color: #e94560;
}

.main-navigation .nav-link.hover-underline::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	background: #e94560;
	bottom: -5px;
	left: 0;
	transition: width 0.3s ease;
}

.main-navigation .nav-link.hover-underline:hover::after {
	width: 100%;
}

.language-section {
    position: relative;
    display: inline-block;
}

/* Кнопка */
.language-button {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #e94560;
    color: #fff;
    padding: 8px 20px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.language-button:hover {
    box-shadow: 0 0 10px #e94560, 0 0 20px #e94560;
}

.language-dropdown {
    display: none;
    position: absolute;
    top: 45px;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 10px;
    list-style: none;
    padding: 0;
    width: 150px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.language-dropdown li {
    padding: 8px 20px;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
    text-align: center;
}

.language-dropdown li:hover {
    background: rgba(233, 69, 96, 0.5);
}

.language-section:focus-within .language-dropdown {
    display: block;
}
/*HeaderEnd */
/* main */
.hero-section {
	background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
	padding: 80px 20px;
	color: #fff;;
}

.hero-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	gap: 40px;
}

.hero-text {
	max-width: 600px;
}

.hero-title {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 20px;
	background: linear-gradient(to right, #e94560, #ff6f91);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 0 0 10px rgba(233, 69, 96, 0.5);
}

.hero-description {
	font-size: 1.2rem;
	line-height: 1.8;
	opacity: 0.9;
	margin-bottom: 30px;
	color: rgba(255, 255, 255, 0.8);
}

.hero-button {
	background: linear-gradient(to right, #e94560, #ff6f91);
	color: #fff;
	border: none;
	padding: 12px 30px;
	font-size: 1.1rem;
	font-weight: 600;
	border-radius: 25px;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 0 15px rgba(233, 69, 96, 0.5), 0 0 30px rgba(233, 69, 96, 0.5);
}

.hero-visual {
	flex: 1;
	max-width: 500px;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.hero-image {
	width: 100%;
	height: auto;
	border-radius: 15px;
	transition: transform 0.3s ease;
}

.hero-visual:hover .hero-image {
	transform: scale(1.05);
}
/* mainEnd */
/* about */
.about-section {
	background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
	padding: 80px 20px;
	color: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	gap: 40px;
}

.about-text {
}

.about-title {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 20px;
	background: linear-gradient(to right, #e94560, #ff6f91);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 0 0 10px rgba(233, 69, 96, 0.5);
}

.about-description {
	font-size: 1.1rem;
	line-height: 1.8;
	opacity: 0.9;
	margin-bottom: 20px;
	color: rgba(255, 255, 255, 0.8);
}

.about-visual {
	flex: 1;
	max-width: 500px;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.about-image {
	width: 100%;
	height: auto;
	border-radius: 15px;
	transition: transform 0.3s ease;
}

.about-visual:hover .about-image {
	transform: scale(1.05);
}
/* aboutEnd */
/* health-cover-content */
.content__fixed{
	max-width: 1200px;
	margin: 0 auto;
}
.health-cover-content{
	padding: 150px 0;
	background: #0B0124;
}
.ai-skills {
	display: flex;
	align-items: center;
	background-color: transparent;
	background-image: linear-gradient(0deg, #EBE9FE 40%, #C6BFFE 90%);
	border-radius: 30px;
	color: #fff;
}
.ai-skills__image{
	display: flex;
	flex: 1;
	align-items: stretch;
}
.ai-skills__image img {
	width: 100%;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
}
.content-fixed{
	max-width: 1200px;
	margin: 0 auto;
}
.ai-skills__content {
	flex: 1;
	padding: 0 40px;
}

.ai-skills__title {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 20px;
	background: linear-gradient(to right, #e94560, #ff6f91);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.ai-skills__list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.ai-skills__item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.ai-skills__icon {
	
}
	.ai-skills__icon img{
		width: 100%;
		max-width:30px;
	}

.ai-skills__text h3 {
	margin: 0;
	font-size: 18px;
	color: #0B0124;
}

.ai-skills__text p {
	margin: 5px 0 0;
	font-size: 14px;
	opacity: 0.8;
	color: #0B0124;
}
/* health-cover-contentEnd */
/* helth */
.big-section-blog{
	background-color: #0a0326;
}
.health-instructors {
	text-align: center;
	color: #fff;
	padding: 50px 20px;
}

.health-instructors__title {
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 30px;
}

.health-instructors__title span {
	color: #A685F4;
}

.health-instructors__grid {
	display: flex;
	justify-content: center;
}

.health-instructors__card {
	background: linear-gradient(135deg, #502379, #A685F4);
	border-radius: 15px;
	padding: 25px;
	width: 33.333%;
	margin: 10px;
	text-align: center;
}

.health-instructors__image {
	width: 100%;
	border-radius: 10px;
	max-width: 70px;
}

.health-instructors__name {
	font-size: 20px;
	font-weight: bold;
	margin: 15px 0;
}

.health-instructors__role {
	color: #F3D9FF;
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 10px;
}

.health-instructors__bio {
	font-size: 14px;
	opacity: 0.8;
}

/* helthENd */
/* ben */
.benefits-section {
	background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
	padding: 80px 20px;
	color: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.benefits-container {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.benefits-title {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 40px;
	background: linear-gradient(to right, #e94560, #ff6f91);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 0 0 10px rgba(233, 69, 96, 0.5);
}

.benefits-content {
	display: flex;
	justify-content: space-between;
	gap: 30px;
}

.benefit-item {
	flex: 1;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	padding: 25px;
	border-radius: 15px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
	transition: box-shadow 0.3s ease, background 0.3s ease;
}

.benefit-item:hover {
	background: rgba(255, 255, 255, 0.15);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.benefit-icon {
	margin-bottom: 20px;
}

.benefit-icon img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.benefit-heading {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 15px;
	color: #e94560;
}

.benefit-description {
	font-size: 1rem;
	line-height: 1.6;
	opacity: 0.9;
	color: rgba(255, 255, 255, 0.8);
}

/* BEnEnd */
/* insig */
.insights-section {
	background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
	padding: 80px 20px;
	color: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.insights-container {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.insights-title {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 40px;
	background: linear-gradient(to right, #e94560, #ff6f91);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 0 0 10px rgba(233, 69, 96, 0.5);
}

.insights-content {
	display: flex;
	justify-content: space-between;
	gap: 30px;
}

.insight-item {
	flex: 1;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	padding: 25px;
	border-radius: 15px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
	transition: box-shadow 0.3s ease, background 0.3s ease;
}

.insight-item:hover {
	background: rgba(255, 255, 255, 0.15);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.insight-image {
	margin-bottom: 20px;
}

.insight-image img {
	width: 100%;
	height: auto;
	border-radius: 15px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.insight-heading {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 15px;
	color: #e94560;
}

.insight-description {
	font-size: 1rem;
	line-height: 1.6;
	opacity: 0.9;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 20px;
}

.insight-button {
	background: linear-gradient(to right, #e94560, #ff6f91);
	color: #fff;
	border: none;
	padding: 12px 30px;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 25px;
	cursor: pointer;
	transition: background 0.3s ease, box-shadow 0.3s ease;
}

.insight-button:hover {
	background: linear-gradient(to right, #ff6f91, #e94560);
	box-shadow: 0 0 15px rgba(233, 69, 96, 0.5), 0 0 30px rgba(233, 69, 96, 0.5);
}

/* insigeND */
/* FAQ */
.faq-content-cover{
	display: flex;
}
.faq-text{
	width: 50%;
	margin-right: 100px;
}
	.faq-text p{
		text-align: start;
		line-height: 1.4;
	}
.faq-section {
	background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
	padding: 80px 20px;
	color: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-container {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.faq-title {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 40px;
	background: linear-gradient(to right, #e94560, #ff6f91);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 0 0 10px rgba(233, 69, 96, 0.5);
}

.faq-content {
	display: flex;
	flex-direction: column;
	gap: 15px;
	width: 50%;
}

.faq-item {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
	transition: box-shadow 0.3s ease, background 0.3s ease;
}

.faq-item:hover {
	background: rgba(255, 255, 255, 0.15);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.faq-question {
	width: 100%;
	padding: 20px;
	font-size: 1.2rem;
	font-weight: 600;
	color: #fff;
	text-align: left;
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: color 0.3s ease;
}

.faq-question:hover {
	color: #e94560;
}

.faq-question[aria-expanded="true"] .faq-icon {
	transform: rotate(45deg);
}

.faq-icon {
	font-size: 1.5rem;
	transition: transform 0.3s ease;
}

.faq-answer {
	padding: 0 20px 20px 20px;
	font-size: 1rem;
	line-height: 1.6;
	opacity: 0.9;
	color: rgba(255, 255, 255, 0.8);
	display: none;
}

.faq-answer p {
	margin: 0;
	text-align: start;
}

.faq-item.active .faq-answer {
	display: block;
}
/* FAQenD */
/* contact */
.contact-section {
	background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
	padding: 80px 20px;
	color: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-container {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.contact-title {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 40px;
	background: linear-gradient(to right, #e94560, #ff6f91);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 0 0 10px rgba(233, 69, 96, 0.5);
}

.contact-content {
	display: flex;
	justify-content: space-between;
	gap: 40px;
}

.contact-form {
	flex: 1;
	max-width: 600px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	padding: 25px;
	border-radius: 15px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.form-group {
	margin-bottom: 20px;
	text-align: left;
}

.form-label {
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	display: block;
	margin-bottom: 8px;
}

.form-input, .form-textarea {
	width: 100%;
	padding: 12px;
	font-size: 1rem;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	transition: border-color 0.3s ease, background 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
	border-color: #e94560;
	background: rgba(255, 255, 255, 0.2);
	outline: none;
}

.form-textarea {
	resize: vertical;
	min-height: 150px;
}

.form-button {
	background: linear-gradient(to right, #e94560, #ff6f91);
	color: #fff;
	border: none;
	padding: 12px 30px;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 25px;
	cursor: pointer;
	transition: background 0.3s ease, box-shadow 0.3s ease;
}

.form-button:hover {
	background: linear-gradient(to right, #ff6f91, #e94560);
	box-shadow: 0 0 15px rgba(233, 69, 96, 0.5), 0 0 30px rgba(233, 69, 96, 0.5);
}

.contact-info {
	flex: 1;
	max-width: 500px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	padding: 25px;
	border-radius: 15px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.info-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 20px;
	color: #e94560;
}

.info-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.info-item {
	font-size: 1rem;
	line-height: 1.6;
	opacity: 0.9;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 15px;
}

.info-item strong {
	color: #e94560;
}
/* contactEnd */
/* footer */
.custom-footer {
	background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
  color: #fff;
  padding: 50px 0;
}

.custom-footer-style {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.footer-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-navigation {
  margin-bottom: 20px;
}

.custom-footer-menu {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-item {
  margin: 10px 15px;
}

.menu-hover a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  transition: color 0.3s ease;
}

.menu-hover a:hover {
  color: #e94560;
}

.custom-footer-text {
  font-size: 14px;
  text-align: center;
  margin-top: 30px;
}

.custom-hover {
  text-decoration: underline;
}
/* footerENd */
/* modal */
.privacy-modal {
	margin: 0 0 20px 20px;
	position: fixed;
	bottom: -100%; /* Начальное положение за пределами экрана */
	left: 0;
	width: 100%;
	max-width: 800px;
	background-color: #ffffff;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	transition: bottom 0.5s ease-in-out;
	z-index: 1000; /* Убедимся, что окно поверх всего контента */
	padding: 20px;
	box-sizing: border-box;
}

.privacy-modal--visible {
	bottom: 0; /* Показываем окно, поднимая его снизу */
}

.privacy-modal__content {
	max-width: 800px;
	margin: 0 auto;
	text-align: start;
}

.privacy-modal__title {
	font-size: 24px;
	margin-bottom: 10px;
	color: #333;
	font-weight: 600;
}

.privacy-modal__text {
	font-size: 16px;
	color: #666;
	margin-bottom: 20px;
	line-height: 1.5;
}

.privacy-modal__link {
	color: #e94560;
	text-decoration: none;
	font-weight: bold;
}

.privacy-modal__link:hover {
	text-decoration: underline;
}

.privacy-modal__actions {
	display: flex;
	justify-content: end;
	gap: 15px;
	margin-top: 20px;
}

.privacy-modal__button {
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	transition: background-color 0.3s ease, transform 0.2s ease;
}

.privacy-modal__button--accept {
	background: linear-gradient(to right, #e94560, #ff6f91);
	color: #ffffff;
}

.privacy-modal__button--accept:hover {
	background-color: #0056b3;
	transform: scale(1.05);
}

.privacy-modal__button--decline {
	background-color: #6c757d;
	color: #ffffff;
}

.privacy-modal__button--decline:hover {
	background-color: #5a6268;
	transform: scale(1.05);
}
/* modalEnd */
/* content */
.content-block {
	padding: 60px 20px;
	background-color: #f9f9f9;
}

.content-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	gap: 40px;
	align-items: center;
	flex-flow: column;
}

.image-section {
	flex: 1;
}

.content-image {
	width: 100%;
	border-radius: 15px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.content-image:hover {
	transform: scale(1.05);
}

.text-section {
	flex: 1;
}

.content-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 20px;
	line-height: 1.3;
	text-align: center;
}

.content-description {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #555;
}

.content-description p {
	margin-bottom: 20px;
}

.content-description p:last-child {
	margin-bottom: 0;
}
/* contentEnd */
/* privacy */
/* privacy */
.privacy-section {
	background-color: #F9F9F9;
	padding: 60px 20px;
	font-family: 'Arial', sans-serif;
}

.top-policy-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stylish-policy {
	text-align: left;
}

.privacy-heading {
	font-size: 32px;
	font-weight: bold;
	color: #333;
	margin-bottom: 20px;
}

.privacy-description {
	font-size: 16px;
	color: #666;
	line-height: 1.6;
	margin-bottom: 30px;
}
.privacy-bog-text{
	margin: 50px 0;
}
.privacy-subheading {
	font-size: 24px;
	font-weight: 600;
	color: #444;
	margin-top: 40px;
	margin-bottom: 15px;
}

.policy-title {
	color: #e94560;
}

/* privacyENd */
@media (max-width: 1200px) {
	/* Настройки для экранов меньше 1200px */
	.header-container,
	.hero-content,
	.about-container,
	.benefits-container,
	.insights-container,
	.faq-container,
	.contact-container {
		padding: 0 15px;
	}

	.hero-title,
	.about-title,
	.benefits-title,
	.insights-title,
	.faq-title,
	.contact-title {
		font-size: 2.5rem;
	}

	.hero-description,
	.about-description,
	.benefit-description,
	.insight-description {
		font-size: 1rem;
	}

	.hero-button,
	.form-button,
	.insight-button {
		padding: 10px 25px;
		font-size: 1rem;
	}
	.faq-content-cover {
		flex-direction: column;
	}

	.faq-text {
		width: 100%;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.faq-content {
		width: 100%;
	}
}

@media (max-width: 992px) {
	/* Настройки для экранов меньше 992px */
	.hero-content,
	.about-container {
		flex-direction: column;
		text-align: center;
	}

	.hero-text,
	.about-text {
		max-width: 100%;
	}

	.hero-visual,
	.about-visual {
		max-width: 100%;
		margin-top: 30px;
	}

	.benefits-content,
	.insights-content {
		flex-wrap: wrap;
	}

	.benefit-item,
	.insight-item {
		flex: 1 1 45%;
		margin-bottom: 20px;
	}

	.contact-content {
		flex-direction: column;
		align-items: center;
	}

	.contact-form,
	.contact-info {
		max-width: 100%;
		width: 100%;
	}
}

@media (max-width: 850px) {
	.privacy-modal{
		margin: 0;
	}
}
@media (max-width: 768px) {
	.privacy-modal{
		border-radius: 0;
	}
	.health-instructors__title{
		font-size: 20px;
		line-height: 1.4;
	}
	.health-instructors__card{
		width: 100%;
	}
	.health-instructors__grid{
		flex-wrap: wrap;
	}
	.ai-skills__image {
	width: 100%;
	}
	.ai-skills__image img{
		border: 0;
	}
	.ai-skills{
		flex-flow: column;
		gap: 31px;
    padding: 0 0 50px 0;
    margin: 0 10px;
	}
	.custom-footer{
		padding: 20px 0 0 0;
	}
	.main-navigation .nav-link{
		font-size: .7rem;
	}
	.header-container {
	flex-flow: column;
	gap: 20px;
	}
	/* Настройки для экранов меньше 768px */
	.hero-title,
	.about-title,
	.benefits-title,
	.insights-title,
	.faq-title,
	.contact-title {
		font-size: 2rem;
	}

	.hero-description,
	.about-description,
	.benefit-description,
	.insight-description {
		font-size: 0.9rem;
	}

	.hero-button,
	.form-button,
	.insight-button {
		padding: 8px 20px;
		font-size: 0.9rem;
	}
	.insights-section {
	padding: 40px 0;
	}
	.insight-heading{
		font-size: 1rem;
	}
	.benefit-item,
	.insight-item {
		flex: auto;
		width: 100%;
	}

	.faq-question {
		font-size: 1rem;
		padding: 15px;
	}

	.faq-answer {
		padding: 0 15px 15px 15px;
	}

	.custom-footer-menu {
		flex-direction: column;
		align-items: center;
	}

	.footer-item {
		margin: 5px 0;
	}
}

@media (max-width: 576px) {
	/* Настройки для экранов меньше 576px */
	.hero-title,
	.about-title,
	.benefits-title,
	.insights-title,
	.faq-title,
	.contact-title {
		font-size: 1.8rem;
	}

	.hero-description,
	.about-description,
	.benefit-description,
	.insight-description {
		font-size: 0.8rem;
	}

	.hero-button,
	.form-button,
	.insight-button {
		padding: 6px 15px;
		font-size: 0.8rem;
	}

	.privacy-modal__title {
		font-size: 20px;
	}

	.privacy-modal__text {
		font-size: 14px;
	}

	.privacy-modal__button {
		padding: 8px 15px;
		font-size: 14px;
	}

	.faq-question {
		font-size: 0.9rem;
		padding: 10px;
	}

	.faq-answer {
		padding: 0 10px 10px 10px;
	}

	.custom-footer-text {
		font-size: 12px;
	}
}