 .column {
            float: left;
            width: 300px;
            height: 200px;
            padding: 20px;
            box-sizing: border-box;
    
             }
            }
         .row::after {
            content: "";
            clear: both;
            display: table;
          
         }
hr {
  width: 30vw;
}
.column p {
  line-height: 1.5;

 
}
.address-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    text-align: center;
    margin: 0 auto;
}
.address-headline {
    text-align: center;
}
}

.address-card {
    background-color: #fff;
    padding: 20px;
    
   
    text-align: center;
}


.address-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #d83333;
   font-family: rift, sans-serif;
}

.address-card p {
    color: black;
    font-size: 15px;
   line-height: 1.5;
}
.address-card a  {
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .address-section {
        grid-template-columns: repeat(2, 1fr);
    }
    
}

@media (max-width: 768px) {
    .address-section {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 1200px){
   .column {
            float: left;
           width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        display: block;
        box-sizing: border-box;
  }

@media only screen and (max-width: 500px){
   .column {
            float: left;
           width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        display: block;
        box-sizing: border-box;
  }
.row::after {
            content: "";
            clear: both;
            display: inline;
         }
    .address-section {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-left: 0px;
    text-align: center;
    
}
}
