/* Language Switcher */

.lang-switcher {
  display: flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.lang-btn {
  display: block;
  padding: 5px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #555;
  text-decoration: none;
  line-height: 1;
  transition: background 0.15s ease, color 0.15s ease;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.lang-btn:last-child {
  border-right: none;
}

.lang-btn:hover {
  background: rgba(0, 0, 0, 0.06);
  color: #111;
  text-decoration: none;
}

.lang-btn.lang-active {
  background: #0563bb;
  color: #fff;
}

.lang-btn.lang-active:hover {
  background: #0452a0;
  color: #fff;
}

/* Hero trust tags */
.hero-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  background: #09548d;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid rgba(9, 84, 141, 0.2);
}

/* About section photo */
.about-photo {
  border-radius: 50%;
  max-width: 200px;
  width: 100%;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.13);
  border: 4px solid #fff;
}

/* Clickable contact links */
.info a {
  color: inherit;
  text-decoration: none;
}
.info a:hover {
  color: #0563bb;
  text-decoration: underline;
}

/* Mobile lang-switcher: compact on small screens */
@media (max-width: 575px) {
  .lang-btn {
    padding: 4px 8px;
    font-size: 0.65rem;
    letter-spacing: 0.04em;
  }
  .lang-switcher {
    border-radius: 4px;
  }
}

/* About photo sizing */
.about-photo {
  max-width: 280px;
}
@media (max-width: 991px) {
  .about-photo {
    max-width: 220px;
    display: block;
    margin: 0 auto 24px auto;
  }
}
@media (max-width: 575px) {
  .about-photo {
    max-width: 160px;
  }
}

/* Tighter section padding on mobile */
@media (max-width: 767px) {
  section {
    padding: 40px 0;
  }
  .section-title {
    padding-bottom: 28px;
  }
}
