.about {
    width: 70%;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    background-color: white;
    border-radius: 18px;
    padding: 50px;
}

.about h1,
.about h2 {
    color: #000;
    margin-bottom: 0.5rem;
    margin-top: 0px;
}

.about p,
.about ul {
    color: #333;
    line-height: 1.6;
}

.about ul {
    list-style: none;
    padding-left: 0;
}

.about ul li {
    margin: 0.5rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.map-feature img,
.gallery-images img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.gallery-images {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
}

.gallery-images div {
    flex: 1 1 30%;
    text-align: center;
}

.gallery-images p {
    margin-top: 0.5rem;
    font-weight: bold;
}

.contact-us a:link,
.contact-us a:visited,
.contact-us a:hover,
.contact-us a:active {
    color: var(--primary-color);
}

.contact-us p {
    margin-bottom: 0px;
}

@media (max-width: 1024px) {
  .about {
    padding: 20px;
    }
}

@media (max-width: 425px) {
  .gallery-images {
      flex-direction: column;
      gap: 0px;
  }
  .gallery-images img {
    margin-top: 0rem;
    }
    .about h2 {
        margin-bottom: 1rem;
    }
}