* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue", sans-serif;
}

body {
  background: #fff;
  color: #222;
  padding: 20px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.back-arrow {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 2rem;
  color: #000;
  text-decoration: none;
}

.profile-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px;
}

.profile-text {
  flex: 1 1 500px;
  max-width: 600px;
  text-align: left;
}

.profile-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.profile-text p {
  margin-bottom: 18px;
  line-height: 1.6;
  font-size: 1rem;
}

.profile-text a {
  color: #000;
  text-decoration: underline;
}

.contact-icons {
  margin-top: 20px;
  display: flex;
  gap: 30px;
  font-size: 1rem;
  flex-wrap: wrap;
}

.contact-icons a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
  text-decoration: none;
}

.contact-icons a:hover {
  text-decoration: underline;
}

.contact-icons img {
  width: 20px;
  height: 20px;
}

.profile-image {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
}

.profile-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .profile-container {
    padding: 50px;
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }

  .profile-text {
    text-align: center;
  }

  .contact-icons {
    justify-content: center;
  }

  .profile-image {
    justify-content: center;
  }
}