* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: #f2f2f2;
  color: #222;
  padding: 20px;
}

.profile-container {
  max-width: 900px;
  margin: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 30px;
}

.profile-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.profile-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #0b7dda;
}

.profile-info h1 {
  color: #0b7dda;
  font-size: 32px;
  margin-bottom: 5px;
}

.profile-info h2 {
  font-size: 20px;
  color: #444;
  margin-bottom: 15px;
}

.profile-info p {
  font-size: 16px;
  margin-bottom: 5px;
}

.profile-info a {
  color: #0b7dda;
  text-decoration: none;
}

.about, .vision, .offers {
  margin-bottom: 25px;
}

h3 {
  margin-bottom: 10px;
  color: #0b7dda;
}

ul {
  padding-left: 20px;
  list-style: none;
}

ul li::before {
  content: "• ";
  color: #0b7dda;
  font-weight: bold;
  margin-right: 5px;
}

.footer {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #666;
}
