body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-image: url("./images/BackgroundImage.jpg");
  color: #333;
}

header {
  background-color: #333;
  color: #fff;
  padding: 1rem 0;
  text-align: center;
}

.about-container {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 1rem;
}

.profile-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /* background-color: #fff; */
  color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.profile-pic {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 2rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.intro-text {
  flex: 1;
}

.intro-text h2 {
  margin-top: 0;
}

.contact-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 10px 20px;
  background-color: #000;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: #333;
}

section {
 color: white;
 
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(17, 3, 3, 0.1);
}

h2 {
  margin-top: 0;
  color: #e1d7d7;
}

ul {
  padding-left: 1.2rem;
  list-style: none;
}

ul li {
  margin-bottom: 0.5rem;
  text-decoration: none;
}

.address {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
