.templeContainer {
  font-family: Arial, sans-serif;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.templeName {
  color: #16266c;
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  font-family: "Helvetica Neue", sans-serif;
}

.templeImage {
  width: 40%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.templeLocation {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  color: #3e6c84;
  margin-bottom: 15px;
}

.templeLocation h2 {
  margin: 0px;
  padding: 0px;
}

.locationIcon {
  margin-right: 6px;
  color: #3e6c84;
  font-size: x-large;
}

.templeDescription {
  width: 70%;
  color: #16266c;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}

.templeDescription a {
  color: #3e6c84;
  text-decoration: none;
}

.templeDescription a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .templeDescription {
    width: 95%;
    font-size: 16px;
  }

  .templeImage {
    width: 70%;
    height: auto;
  }

  .templeName {
    font-size: 2rem;
  }
}
