/* Basic styling for the entire section */
.address-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
  font-family: Arial, sans-serif;
  color: #333;
}

/* Flexbox container for the addresses */
.address-container {
  display: flex;
  flex-wrap: wrap; /* Allows addresses to wrap to a new line */
  justify-content: center;
  gap: 20px; /* Space between each address item */
  max-width: 1200px;
  margin: 0 auto; /* Center the container on the page */
}

/* Individual address item styling */
.address-item {
  flex: 1 1 300px; /* Flex-grow, flex-shrink, and base width */
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.address-item h3 {
  margin-top: 0;
  font-size: 1.25rem;
  color: #0056b3;
}

.address-item p {
  line-height: 1.6;
}
