.rangeDetailsLayout {
  display: flex;
  align-items: flex-start;
  gap: 20px; /* Adds space between image and address */
  margin-bottom: 20px;
  flex-wrap: wrap; /* Allows items to stack on smaller screens */
  flex-direction: row-reverse; /* Moves image to the right */
}

.rangeImage {
  width: 300px; /* Restricts size */
  max-width: 25%; /* Prevents stretching */
  height: auto;
  object-fit: cover; /* Ensures aspect ratio */
  border-radius: 8px; /* Optional */
}

.addressDetails {
  flex-grow: 1; /* Makes it take remaining space */
  font-size: 16px;
  text-align: left;
}

.disciplinesSection {
  width: 100%;
  margin-top: 20px;
}

.disciplinesSection h4 {
  margin-bottom: 10px;
}
