* {
  font-weight: bold;
}

body {
  font-family: 'Quicksand', sans-serif;
  background-color: #fff3e0; /* Light warm peach background */
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.container {
  text-align: center;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(106, 27, 154, 0.2); /* Purple tint shadow */
  max-width: 400px;
  width: 100%;
}

.profile img {
  border-radius: 50%;
  width: 300px;
  max-width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 20px;
}

.profile h1 {
  margin: 10px 0;
  font-size: 24px;
  color: #6a1b9a; /* Deep purple */
}

.profile p {
  font-size: 16px;
  color: #555555;
  margin: 0 20px;
  line-height: 1.5;
  text-align: left;
}

.audio-player {
  margin: 20px 0;
  text-align: center;
}

.audio-player h2 {
  font-size: 20px;
  color: #6a1b9a; /* Deep purple */
  margin-bottom: 10px;
}

.audio-player audio {
  width: 100%;
  max-width: 400px;
  margin-bottom: 10px;
}

.audio-player a {
  color: #FF9800; /* Warm orange */
  text-decoration: none;
  font-weight: bold;
}

.audio-player a:hover {
  text-decoration: underline;
}

.links {
  margin-top: 20px;
}

.link {
  display: block;
  margin: 10px 0;
  padding: 15px;
  background-color: #FF9800; /* Warm orange */
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  width: 100%;
  box-sizing: border-box;
}

.link:hover {
  background-color: #FB8C00; /* Darker warm orange */
}

.contact {
  font-size: 16px;
  color: #555555;
  text-align: left;
  margin: 0 20px;
}

.contact a {
  color: #FF9800;
  text-decoration: none;
  font-weight: bold;
}

.contact a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 480px) {
  .container {
    padding: 15px;
    border-radius: 8px;
  }

  .profile h1 {
    font-size: 20px;
  }

  .profile p {
    font-size: 14px;
  }

  .link {
    padding: 12px;
    font-size: 14px;
  }

  .audio-player h2 {
    font-size: 18px;
  }

  .audio-player a {
    font-size: 14px;
  }

  .contact {
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  .profile h1 {
    font-size: 28px;
  }

  .profile p {
    font-size: 18px;
  }

  .link {
    padding: 18px;
    font-size: 16px;
  }

  .audio-player h2 {
    font-size: 22px;
  }

  .audio-player a {
    font-size: 16px;
  }

  .contact {
    font-size: 18px;
  }
}

/* -------------------------- */
/* Services Section Styles    */
/* -------------------------- */
.services {
  margin: 20px 0;
  padding: 20px;
  background-color: #ffffff;
  border: 2px solid #a5d6a7; /* Light green border */
  border-radius: 10px;
  text-align: center;
}

.services h2 {
  margin-bottom: 15px;
  font-size: 22px;
  color: #6a1b9a; /* Deep purple */
}

.services .btn {
  background-color: #FF9800; /* Warm orange */
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: background-color 0.3s;
  font-size: 18px; /* Increased text size */
  font-weight: bold; /* Bolder text */
}

.services .btn:hover {
  background-color: #FB8C00;
}

.services #moreContent p {
  font-size: 16px;
  color: #333333;
  text-align: left;
  margin-bottom: 10px;
}

.services #moreContent ul {
  list-style: disc;
  text-align: left;
  margin: 10px 0 10px 20px;
}

.services a {
  color: #FF9800;
  text-decoration: none;
}

.services a:hover {
  text-decoration: underline;
}
