/* Общие стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Основные настройки для body */
body {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  /* background-color: #fff; */
  background-color: black;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Top Banner */
.top_banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
  font-family: 'Barlow Condensed', sans-serif;
  color: #fff;
}
.top_banner_bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  filter: none;
}
.top_banner_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.15) 0%,
    rgba(0,0,0,.25) 40%,
    rgba(0,0,0,.35) 100%
  );
  z-index: 2;
}
.top_banner_content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}
.top_banner_prof {
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: .9;
  margin-bottom: 12px;
}
.top_banner_name {
  font-size: clamp(36px, 6vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 16px;
}
.top_banner_subtitle {
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 400;
  opacity: .95;
}
/* Top Banner */

/* Footer */
.footer {
  background: #e0e0e0;
  padding: 40px 20px;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  color: #222;
}
.footer_inner {
  max-width: 800px;
  margin: 0 auto;
}
.footer_email a {
  font-weight: 700;
  color: #000;
  text-decoration: none;
  font-size: 18px;
}
.footer_email a:hover {
  text-decoration: underline;
}
.footer_location {
  margin-top: 10px;
  font-size: 16px;
}
.footer_socials {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  justify-content: center;
}
.footer_socials a img {
  width: 28px;
  height: 28px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.footer_socials a img:hover {
  opacity: 1;
}
/* Footer */

/* Diplom Psycholog */
.diplom_psycholog {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  color: #222;
}
.diplom_psycholog_inner {
  max-width: 800px;
  margin: 0 auto;
}
.diplom_psycholog_photo_wrap {
  width: 220px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.diplom_psycholog_photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.diplom_psycholog_name {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}
.diplom_psycholog_text {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
}
/* Diplom Psycholog */

/* Help */
.help_block {
  padding: 64px 20px;
  text-align: center;
  color: #111;
  font-family: 'Barlow Condensed', sans-serif;
  background: #eee;
}
.help_block_inner {
  max-width: 950px;
  margin: 0 auto;
}
.help_title {
  font-size: clamp(28px, 6vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.help_text {
  font-size: clamp(16px, 2.2vw, 22px);
  line-height: 1.7;
  color: #333;
  max-width: 950px;
  margin: 0 auto;
}
/* Help */
