body {
  background-color: #121212;
  color: white;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 20px;
  gap: 50px;
}

.profile-image {
  position: relative;
  background-color: #f9b60b;
  padding: 20px;
  border-radius: 20px;
}

.profile-image img {
  width: 400px;
  height: auto;
  border-radius: 20px;
  display: block;
}

.profile-text {
  max-width: 600px;
}

.profile-text h3 {
  font-size: 24px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: black;
}

.line {
  display: inline-block;
  width: 30px;
  height: 3px;
  background-color: #f9b60b;
  margin-right: 10px;
}

.highlight {
  color: #f9b60b;
}

.title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
  color: black;
}

.profile-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: black;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: transparent;
  border: 2px solid #f9b60b;
  color: black;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn:hover {
  background-color: #f9b60b;
  color: black;
}

.arrow {
  background: #f9b60b;
  color: black;
  border-radius: 50%;
  padding: 5px 10px;
  margin-left: 10px;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    height: auto;
    padding: 40px 20px;
    text-align: center;
  }

  .profile-image {
    margin-bottom: 30px;
  }

  .profile-text h3 {
    justify-content: center;
  }

  .profile-text p {
    font-size: 15px;
  }

  .title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  .arrow {
    padding: 4px 8px;
  }
}
