body {
  font-family: 'Open Sans', sans-serif;
  background-color: #f8f9fa;

}

.location-details {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.location-header {
  background: linear-gradient(135deg, #007bff, #00bfff);
  color: white;
  padding: 40px 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  text-align: center;
}

.location-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.location-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
}

#map {
  height: 400px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.location-info {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.location-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #007bff;
}

.location-info ul {
  list-style: none;
  padding: 0;
}

.location-info ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #555;
}

.location-info ul li i {
  margin-right: 10px;
  color: #007bff;
}

@media (max-width: 768px) {
  .location-header h1 {
      font-size: 2rem;
  }

  #map {
      height: 300px;
  }
}
  .location-board {
            margin: 2rem 0;
            padding: 2rem;
            background: #f8f9fa;
            border-radius: 10px;
        }

        .board-member {
            text-align: center;
            margin: 1rem;
            padding: 1rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .board-member img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1rem;
        }

        .news-card {
            margin-bottom: 1.5rem;
            transition: transform 0.3s ease;
        }

        .news-card:hover {
            transform: translateY(-5px);
        }
        .location-board {
          margin: 2rem 0;
          padding: 2rem;
          background: #f8f9fa;
          border-radius: 10px;
      }

      .board-member {
          text-align: center;
          margin: 1rem;
          padding: 1rem;
          background: white;
          border-radius: 8px;
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      }

      .location-news {
          margin-top: 3rem;
      }

      .map-container iframe {
          width: 100%;
          height: 450px;
          border: 0;
          border-radius: 10px;
      }
      .board-member img {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 50%;
    }

    .news-card {
        transition: transform 0.3s ease;
    }

    .news-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .location-map {
        border-radius: 10px;
        border: 1px solid #ddd;
    }
