*,
*::before,
*::after {
  -webkit-font-smoothing: antialiased;
}

html, body {
  margin: 0;
  padding: 0;
  background-color: #f4f4f5;
  font-family: 'Manrope', sans-serif;
  height: 100%;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

.main-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  background-color: #f4f4f5;
  width: 100%;
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  width: 100%;
}


.logo {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}

.logo-img {
  width: 54px;
  height: 80px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 700;
  font-size: 32px;
  margin: 0;
  color: #333;
}

.logo-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  margin-top: 4px;
  color: #666;
}

.help {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 0;
  text-align: center;
}

.help-title {
  font-weight: 700;
  font-size: 20px;
  margin: 0;
  color: #333;
  white-space: nowrap;
}

.help-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #666;
  margin: 4px 0 0 0;
}

.icons-header {
  transition: transform 0.3s ease, filter 0.3s ease;
  display: flex;
  align-items: center;
  gap: 66px;
  flex-shrink: 0;
}

.icons-header a img {
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), 
              filter 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.icons-header a:hover img {
  transform: rotate(10deg) scale(1.1);
  filter: brightness(1.2);
}

.icons-header img {
  width: 48px;
  height: 48px;
  display: block;
}

.icons-header .uk-button.uk-button-default {
  border: none;
  background: none;
  padding: 0;
  box-shadow: none;
}


.content {
  margin-top: 80px;
  padding-left: 50px;
  text-align: left;
}

.content-tagline {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 36px;
  color: #666;
  margin: 0 0 5px 0;
}

.content-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 36px;
  color: #666;
  margin: 0 0 5px 0;
}

.content-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

.photo {
  width: 487px;
  margin-top: 100px;
  margin-left: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
}

.cta-button-wrapper {
  margin-top: 80px;
  padding-left: 50px;
}

.cta-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 320px;
  height: 100px;
  background-color: #d4a373;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #000000;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
  background-color: #c08a5a;
  color: #fff;
  text-decoration: none;
}

.about-card {
  background-color: #FFF9F4;
  border-radius: 32px;
  padding: 50px;
  margin: 50px auto 0 auto;
  width: calc(100% - 100px);
  max-width: 1300px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.about-name {
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #333333;
  margin: 0px 0 16px 0;
}

.about-text {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: 0.5px;
  color: #000;
  margin-bottom: 16px;
}

.wave-divider {
  display: block;
  width: 100%;
  height: auto;
  padding-top: 20px;
}

.consult-section-title {
  font-family: 'Manrope', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #333;
  margin: 50px 0 0px 0;
  text-align: center;
  text-transform: uppercase;
}

.consult-cards-section {
  margin: 10px 50px 0;
}

.consult-cards {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 40px 24px;
}

.consult-card {
  background-color: #FFF9F4;
  border-radius: 32px;
  padding: 20px 16px;
  width: 350px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.consult-card-title {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #3D2E22;
  margin-bottom: 8px;
}

.consult-line {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #000;
  margin: 4px 0;
}

.consult-subline {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  color: #000;
  font-weight: 500;
  margin: 4px 0;
}

.consult-subline-ru {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  color: #000;
  font-weight: 500;
  margin: 4px 0;
}

.consult-subline-us {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  color: #000;
  font-weight: 500;
  margin: 4px 0;
}

.consult-btn {
  margin-top: 24px;
  padding: 16px 32px;
  background-color: #d4a373;
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  border-radius: 24px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.consult-btn:hover {
  background-color: #c08a5a;
  color: #fff;
  text-decoration: none;
}

.help-section {
  background-color: #FFF9F4;
  width: 100%;
  padding: 30px 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

.help-text {
}

.help-container {
  max-width: 1200px;
  width: 100%;
  padding: 0 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-right: 100px;
}

.help-text {
  max-width: 800px;
  flex-grow: 1;
  margin: 0;
}

.help-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #2D3C4B;
  margin: 0 0 6px 0;
}

.help-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #6A6A6A;
  margin: 0;
  line-height: 1.4;
}

.help-btn {
  background-color: #d4a373;
  color: #000;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  padding: 16px 40px;
  border-radius: 24px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.help-btn:hover {
  background-color: #c08a5a;
  color: #fff;
  text-decoration: none;
}

.therapy-section {
  max-width: 1440px;
  margin: 50px auto;
  padding: 0 50px;
  text-align: center;
}

.therapy-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 42px;
  color: #333;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.therapy-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.therapy-card {
  background-color: #FFF9F4;
  border-radius: 32px;
  padding: 32px 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-align: left;
  width: 576px;
  box-sizing: border-box;
}

.therapy-card-title {
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #3D2E22;
  margin-bottom: 18px;
}

.therapy-card-subtitle {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #2D3C4B;
  line-height: 1.5;
}

.menu-wrapper {
  padding: 24px;
  border-radius: 16px;
  font-family: 'Inter', sans-serif;
}

.menu-wrapper ul.uk-nav > li > a {
  font-size: 18px;
  padding: 8px 0;
  color: #2a2a2a;
  transition: color 0.3s;
}

.menu-wrapper p {
  font-family: 'Manrope', sans-serif;
  margin-top: 24px;
  font-weight: 500;
  font-size: 20px;
}

.menu-wrapper .uk-grid-small img {
  width: 28px;
  height: 28px;
  transition: transform 0.2s;
}

.menu-wrapper .uk-grid-small a:hover img {
  transform: scale(1.1);
}

.uk-offcanvas-bar {
  background-color: #fff;
  color: #333;
}

.uk-offcanvas-bar .uk-close {
  color: #000 !important;
}

.uk-close svg {
  width: 32px;
  height: 32px;
}

.uk-offcanvas-close {
  margin-top: 40px;
  margin-right: 30px;
}

.uk-margin-top {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #2D3C4B;
}

.uk-nav uk-nav-default {
  font-weight: 24px;
}

.uk-nav-default > li > a {
  color: #111 !important;
  background-color: transparent !important;
  transition: color 0.3s ease;
}

.uk-nav-default > li > a:hover {
  color: #876b5f !important;
  background-color: transparent !important;
}

.offcanvas-logo {
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.offcanvas-logo img {
  margin-right: 8px;
}

.education-section {
  text-align: center;
  padding-top: 40px;
}

.section-title {
  font-family: Manrope, sans-serif;
  font-weight: 600;
  font-size: 42px;
  text-transform: uppercase;
  margin-bottom: 50px;
  color: #333;
}

.edu-block {
  margin-bottom: 20px;
}

.edu-divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  width: 60%;
  margin: 30px auto;
}

#reviews {
  padding: 50px;
  background-color: #f4f4f5;
  color: #2e2e2e;
  font-family: 'Georgia', serif;
}

#reviews h2 {
  font-family: 'Manrope', sans-serif;
  text-align: center;
  font-size: 42px;
  margin-bottom: 65px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
}

.review {
  max-width: 750px;
  margin: 0 auto 3rem auto;
  padding: 2rem;
  background-color: #ffffff;
  border-left: 4px solid #d4a373;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.review-text {
  font-size: 1.1rem;
  line-height: 1.7;
  white-space: pre-line;
}

.review-author {
  text-align: right;
  margin-top: 1.5rem;
  font-style: italic;
  color: #666;
  font-size: 1rem;
}

.site-footer {
  background-color: #f3eee9;
  padding: 40px 20px;
  color: #4a3f35;
  font-size: 14px;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
}

.footer-brand {
  margin-bottom: 15px;
  font-weight: 500;
}

.footer-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: center;
  font-size: 14px;
}

.footer-contacts a {
  color: #4a3f35;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contacts a:hover {
  color: #d4a373;
}

.offcanvas-top {
  padding: 12px 20px;
}

.offcanvas-logo img {
  max-height: 80px;
}

.lang-switcher {
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.lang-switcher a {
  color: #4a3f35;
  text-decoration: none;
  margin: 0 6px;
  transition: color 0.2s;
}

.lang-switcher a:hover {
  color: #d4a373;
}

@media (max-width: 1024px) {
  .header .help-title,
  .header .help-subtitle {
    display: none;
  }

  .header-inner {
    padding: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .icons-header button {
    display: inline-flex;
    background: none;
    border: none;
    padding: 0;
  }

  .logo-img {
    margin-left: 20px;
    width: 40px;
    height: 80px;
  }

  .icons-header img {
    width: 42px;
    height: 42px;
    display: block;
  }

  .logo-text {
    padding-top: 15px;
  }

  .logo-title {
    font-size: 24px;
  }

  .logo-subtitle {
    font-size: 14px;
  }

  .uk-button {
    margin-right: 20px;
  }

  .main-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding: 0 20px;
  }

  .content {
    text-align: left;
    align-items: left;
    margin-top: 40px;
    padding-left: 20px;
  }

  .photo {
  width: 292px;
  margin-top: 20px;
  margin-left: 120px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  }

  .content-tagline {
    font-size: 26px;
    margin-bottom: 4px;
  }

  .content-name {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .content-description {
    font-size: 20px;
    line-height: 1.5;
  }

  .cta-button-wrapper {
    align-self: center;
    width: 100%;
    display: flex;
    justify-content: left;
    margin-top: 20px;
    padding-left: 15px;
  }

  .cta-button {
    width: 160px;
    height: 48px;
    font-size: 16px;
    border-radius: 10px;
  }

  .about-card {
    border-radius: 16px;
    padding: 15px;
    margin: 50px 20px 50px 20px;
    width: 93%;
    max-width: 980px;
  }

  .about-name {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 12px;
    text-align: center;
  }

  .about-text {
    font-size: 16px;
    line-height: 1.5;
  }

  .consult-section-title {
    font-size: 32px;
  }

  .consult-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .consult-card {
    width: 285px;
    text-align: center;
  }

  .help-title {
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    font-size: 18px;
    line-height: 1.4;
  }

  .help-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 15px;
    gap: 20px;
    margin-right: 0px;
  }

  .help-subtitle {
    font-size: 16px;
    line-height: 1.4;
    word-break: break-word;
  }

  .help-btn {
    font-size: 16px;
    padding: 10px 24px;
    border-radius: 10px;
  }

  .therapy-title {
    font-size: 32px;
  }

  .section-title {
    font-size: 32px;
  }

  .edu-block {
    padding: 0 15px;
  }

  #reviews h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .icons-header a {
    display: none; /* скрываем все иконки, кроме кнопки меню */
  }

  .icons-header button {
    display: inline-flex;
    background: none;
    border: none;
    padding: 0;
  }

  .icons-header img {
    width: 48px;
    height: 48px;
  }

  .logo-img {
    margin-left: 20px;
    width: 50px;
    height: auto;
  }

  .logo-title {
    font-size: 24px;
  }

  .logo-subtitle {
    font-size: 16px;
  }

  .logo-text {
    margin-left: 15px !important;
  }

  .uk-button {
    margin-right: 20px;
  }

  .main-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding: 0 15px;
  }

  .content {
    text-align: left;
    align-items: left;
    margin-top: 40px;
    padding-left: 15px;
  }

  .photo {
    width: 250px;
    margin: 44px 0 0 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
  }

  .content-tagline {
    font-size: 32px;
    margin-bottom: 4px;
  }

  .content-name {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .content-description {
    font-size: 17px;
    line-height: 1.5;
  }

  .cta-button-wrapper {
    align-self: center;
    width: 100%;
    display: flex;
    justify-content: left;
    margin-top: 20px;
    padding-left: 15px;
  }

  .cta-button {
    width: 160px;
    height: 48px;
    font-size: 16px;
    border-radius: 10px;
  }

  .about-card {
    border-radius: 16px;
    padding: 15px;
    margin: 50px 20px 50px 20px;
    width: 100%;
    max-width: 700px;
  }

  .about-name {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 12px;
    text-align: center;
  }

  .about-text {
    font-size: 16px;
    line-height: 1.5;
  }

  .consult-section-title {
    font-size: 32px;
  }

  .consult-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .help-title {
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    font-size: 18px;
    line-height: 1.4;
  }

  .help-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 15px;
    gap: 20px;
    margin-right: 0px;
  }

  .help-subtitle {
    font-size: 16px;
    line-height: 1.4;
    word-break: break-word;
  }

  .help-btn {
    font-size: 16px;
    padding: 10px 24px;
    border-radius: 10px;
  }

  .therapy-title {
    font-size: 32px;
  }

  .section-title {
    font-size: 32px;
  }

  #reviews h2 {
    font-size: 32px;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer-brand {
    font-size: 20px;
    color: #555;
  }

  .footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer-contacts a {
    color: #4a3f35;
    text-decoration: none;
    font-size: 14px;
  }
}

@media (max-width: 440px) {
  .header-inner {
    padding: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .icons-header a {
    display: none; /* скрываем все иконки, кроме кнопки меню */
  }

  .icons-header button {
    display: inline-flex;
    background: none;
    border: none;
    padding: 0;
  }

  .icons-header img {
    width: 36px;
    height: 36px;
  }

  .logo-img {
    margin-left: 15px;
    width: 30px;
    height: 45px;
    margin-bottom: 25px;
  }

  .logo-title {
    font-size: 18px;
  }

  .logo-subtitle {
    font-size: 12px;
  }

  .logo-text {
    margin-left: 5px !important;
    padding-top: 0px !important;
  }

  .uk-button {
    margin-right: 15px;
  }

  .main-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 0 15px;
  }

  .content {
    text-align: center;
    align-items: center;
    margin-top: 40px;
    padding-left: 15px;
  }

  .photo {
    width: 350px;
    margin-top: 50px;
    margin-left: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
  }

  .content-tagline {
    font-size: 30px;
    margin-bottom: 4px;
  }

  .content-name {
    font-size: 26px;
    margin-bottom: 8px;
  }

  .content-description {
    font-size: 15px;
    line-height: 1.5;
  }

  .cta-button-wrapper {
    align-self: center;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding-left: 15px;
  }

  .cta-button {
    width: 160px;
    height: 48px;
    font-size: 16px;
    border-radius: 10px;
  }

  .about-card {
    border-radius: 16px;
    padding: 15px;
    margin: 50px 15px 50px 15px;
    width: 100%;
    max-width: 380px;
  }

  .about-name {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 12px;
    text-align: center;
  }

  .about-text {
    font-size: 16px;
    line-height: 1.5;
  }

  .consult-section-title {
    font-size: 32px;
  }

  .consult-cards-section {
    margin: 0;
  }
  .help-title {
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    font-size: 18px;
    line-height: 1.4;
  }

  .help-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 15px;
    gap: 20px;
    margin-right: 0px;
  }

  .help-subtitle {
    font-size: 16px;
    line-height: 1.4;
    word-break: break-word;
  }

  .help-btn {
    font-size: 16px;
    padding: 10px 24px;
    border-radius: 10px;
  }

  .therapy-title {
    font-size: 32px;
  }

  .section-title {
    font-size: 32px;
  }

  .edu-block {
    padding: 0 15px;
  }

  #reviews h2 {
    font-size: 32px;
  }

  .site-footer {
    padding: 20px 15px;
    background-color: #f8f8f8;
    text-align: center;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer-brand {
    font-size: 14px;
    color: #555;
  }

  .footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer-contacts a {
    color: #4a3f35;
    text-decoration: none;
    font-size: 14px;
  }

  .uk-offcanvas-bar {
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    padding: 20px;
    box-sizing: border-box;
  }

  .uk-nav {
    text-align: center;
  }

  .uk-nav li a {
    display: inline-block;
  }

  .question {
    text-align: center;
  }
}
