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

.container {
  max-width: 950px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
}

.profile {
  display: flex;
  align-items: center;
  gap: 30px;
  border-bottom: 2px solid #dddddd;
  padding-bottom: 25px;
  margin-bottom: 30px;
}

.profile-img {
  width: 175px;
  height: 175px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #cccccc;
}

.profile-text {
  flex: 1;
}

h1 {
  margin: 0 0 8px 0;
  font-size: 36px;
  font-weight: 700;
}

.title {
  font-size: 18px;
  color: #444444;
  margin: 0 0 12px 0;
}

.links {
  margin-top: 10px;
}

h2 {
  border-bottom: 1px solid #dddddd;
  padding-bottom: 5px;
  margin-top: 35px;
  color: #222222;
  font-size: 24px;
}

h3 {
  margin-bottom: 5px;
  color: #333333;
  font-size: 18px;
}

a {
  color: #005ea8;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul,
ol {
  padding-left: 25px;
}

li {
  margin-bottom: 8px;
}

section {
  margin-bottom: 20px;
}

footer {
  border-top: 1px solid #dddddd;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 14px;
  color: #555555;
}

@media (max-width: 700px) {
  .profile {
    flex-direction: column;
    align-items: flex-start;
  }

  .profile-img {
    width: 150px;
    height: 150px;
  }

  .container {
    padding: 25px;
  }
}
