.footer {
    background-color: #073965;
    color: white;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
  }

  .footer-section {
    flex: 1 1  300px;
  }
  
  .footer-section h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li{
    margin: 5px 0;
    color: #fff;
  }

  .footer-section ul li a{
    margin: 5px 0;
    color: #fff;
    font-size: 15px !important;
  }

  .footer-section ul li:hover{
    text-decoration: underline;
  }
  

  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid #084c88;
    text-align: center;
}

.footer-column {
    flex: 1; 
    margin-right: 20px; 
    min-width: 200px; 
}

.footer-column:last-child {
    margin-right: 0;
}

.address p {
    margin-bottom: 10px;
}

.address h4,
.payment-info h4,
.company-info h4 {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #fff;
}

.payment-info {
    text-align: center;
}

.payment-icons {
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-icons img {
    height: 35px;
    margin: 0 5px;
}

.footer-links {
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
    order: 4;
}

.footer-links a {
    color: #fff;
    margin: 0 5px;
    text-decoration: none;
    font-size: 13px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-bottom > p {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #fff;
    width: 100%;
    order: 5;
}

.social-icons {
    display: flex; 
    justify-content: center;
    margin-top: 10px;
}

.social-icons a {
    font-size: 22px;
    margin: 0 8px;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    transform: scale(1.2);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.f-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.f-logo img {
    height: 50px;
    margin: 0 5px;
    margin-bottom: 10px;
}

.site-des p{
  text-align: start;
  padding-left: 50px;
  padding-right: 50px;

}


@media (max-width:768px){
  .site-des p{
    text-align: center;
  }
}

