/* Static page content */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.page-content__inner h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.page-content__inner p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.page-content__inner ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.page-content__inner li {
  margin-bottom: 0.5rem;
}

.page-content__inner a {
  color: #4b6bfb;
}

/* Logo text styles */
.logo__text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #181a2a;
  letter-spacing: -0.02em;
}

.logo__link:hover .logo__text {
  color: #4b6bfb;
}

/* Language switcher styles */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  padding-left: 1rem;
}

.lang-switcher__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lang-switcher__link:hover {
  opacity: 1;
  transform: scale(1.1);
}

.lang-switcher__link--active {
  opacity: 1;
}

.lang-flag {
  font-size: 1.25rem;
  line-height: 1;
}

/* Ensure language switcher appears on mobile menu too */
@media (max-width: 991px) {
  .lang-switcher {
    margin: 1rem 0;
    justify-content: center;
    padding-left: 0;
  }
}

/* Hide newsletter section */
.c-subscribe {
  display: none;
}
