body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #000;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.main-section {
  display: flex;
  flex-wrap: wrap;
  background-color: #1a1a1a;
  color: #fff;
  padding: 40px;
  gap: 40px;
  justify-content: center;
}

.profile-image img {
  width: 300px;
  height: auto;
  border-radius: 5px;
}

.practice-areas {
  max-width: 600px;
}

.practice-areas h2 {
  margin-top: 0;
  font-size: 28px;
  margin-bottom: 20px;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.area {
  flex: 1 1 160px;
}

.area img {
  width: 60px;
  height: auto;
  margin-bottom: 10px;
}

.area h3 {
  margin: 10px 0 5px;
}

.area p {
  font-size: 14px;
  line-height: 1.4;
}

.contact-button {
  display: inline-block;
  margin-top: 20px;
  background-color: #007bff;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.site-footer {
  text-align: center;
  padding: 20px;
  font-size: 16px;
  background-color: #f9f9f9;
}
