.grid-container {
    display: grid;
    grid-template-columns: auto auto auto;
    background-color: #2196F3;
    padding: 10px;
  }
  .grid-item {
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.8);
    padding: 20px; 
    margin: 20px;
    font-size: 30px;
    text-align: center;
  }
/* Row styling for equal height */

.row1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
  gap: 20px; /* Space between cards */
}
  
.card {
  display: flex;
  /* flex-direction: column; */
  justify-content: space-between; /* Evenly distribute space */
  height: 100%; /* Make cards uniform */
  width: 100%;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}
.address-card {
  flex-grow: 1; /* Fills the available space inside the card */
  margin: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
  
.flex-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
  
  .image-section {
    flex: 1;
  }

  .responsive-img {
    height: 135px;
    width: 135px;
    border-radius: 8px;
    object-fit: cover;
  }

  
  .address-section {
    flex: 2; /* Takes 2 parts of the available space */
  }
  
  .address-section h5 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #333;
  }
  
  .address-section p {
    margin: 0;
    font-size: .82rem;
    color: #666;
  }
  
  .addrss-title {
    font-size: 1rem; /* Text size for title */
    font-weight: bold; /* Makes the text bold */
    color: #333; /* Text color */
    margin-bottom: 10px; /* Space below the title */
    text-transform: uppercase; /* Converts text to uppercase */
    letter-spacing: 1px; /* Adds spacing between letters */
    text-align: left; /* Aligns text to the left */
  }

  .section-heading h2 {
    white-space: unset;
}
  
  /* Responsive Design */
  @media (max-width: 768px) {
    /* .flex-container {
      flex-direction: column;
      text-align: center; 
    }
  
    .address-section {
      margin-top: 20px; 
    }

    .addrss-title {
    font-size: 1.2rem; 
    text-align: center; 
  } */
   
  .responsive-img {
    /* max-width: 100%; */
    /* height: auto; */
    height: 85px;
    width: 85px;
  }
  .addrss-title {
    font-size: 1.2rem;
  }
  }
  
  .truncate-link {
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
  }
  
/* Responsive Design: Stack cards on smaller screens */
@media (max-width: 768px) {
  .row1 {
    grid-template-columns: 2fr; /* Single column on small screens */
    gap: 10px !important;
  }
  
.card {
  max-width: 320px !important;
}
.address-card {
  margin: 10px 0px !important;
}

.flex-container {
  gap: 10px !important;
}
}

/* One column for smaller screens (phones) */
@media (max-width: 576px) {
  .row1 {
    grid-template-columns: 1fr; /* Single column */
    gap: 10px !important;
  }
}