body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f3f3f3;
  margin: 0;
  padding: 0;
}

.language-switcher {
  text-align: right;
  padding: 10px;
}

.container {
  max-width: 1000px;
  min-width: 350px;
  margin: 0 auto;
  padding: 30px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.info {
  flex: 1;
  min-width: 350px;
}

.contact-info {
  margin-top: 10px;
}

.profile-image {
  width: 100%;
  max-width: 180px;
  height: auto;
  object-fit: cover;
  margin-left: 30px;
  margin-right: 0;
  border-radius: 50%;
  align-self: flex-start;
}

.section {
  margin-bottom: 30px;
}

a {
  color: #333;
  text-decoration: none;
}

a:hover {
  color: #555;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .profile-image {
      margin-left: 15px;
  }
}