.site-footer {
  background-color: #0e0e0e;
  color: #fff;
  padding: 30px 80px; 
  font-family: 'Arial', sans-serif;
  box-sizing: border-box;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #333;
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.footer-message h2 {
  font-family: 'Figtree',sans-serif;
  font-style: normal;
  font-size: 48px; 
  font-weight: 600;
  line-height: 58px;
  color: #7F1416;
  margin-bottom: 5px;
}

.footer-message h3 {
  font-family: 'Figtree',sans-serif;
  font-style: normal;
  font-size: 48px; 
  font-weight: 600;
  line-height: 58px;
  margin: 0;
}

.footer-contact-info {
  display: flex;
  gap: 60px; 
  align-items: flex-start; 
}

.footer-contact-info > div {
  max-width: 300px;  
  white-space: normal; 
}

.footer-contact-info h4 {
  font-family: 'Figtree',sans-serif;
  font-style: normal;
  font-size: 16px; 
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 5px;
}

.footer-contact-info p, 
.footer-contact-info a {
  font-family: 'Public Sans',sans-serif;
  font-style: normal;
  font-size: 16px; 
  font-weight: 400;
  line-height: 20px;
  color: #808080;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-links div {
  flex: 1 1 200px;
}

.footer-links h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 6px;
}

.footer-links ul li a {
  font-family: 'Public Sans',sans-serif;
  font-style: normal;
  font-size: 16px; 
  font-weight: 400;
  line-height: 20px;
  color: #808080;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #fff;
}

.footer-logo {
  text-align: center;
  max-width: 200px;
}

.footer-logo img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.footer-logo p {
  font-family: 'Public Sans',sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: #808080;
  line-height: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 0.85rem;
  color: #aaa;
}

/* Responsive */
/* Responsive Footer */

/* Tablet and smaller screens */
@media (max-width: 992px) {
  .site-footer {
    padding: 30px 40px;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  
  .footer-message h2,
  .footer-message h3 {
    font-size: 36px;
    line-height: 44px;
    text-align: center;
  }
  
  .footer-contact-info {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  
  .footer-contact-info > div {
    max-width: 100%;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .footer-links div {
    flex: 1 1 45%;
  }
  
  .footer-logo {
    max-width: 150px;
    margin: 0 auto;
  }
}

/* Mobile screens */
@media (max-width: 600px) {
  .site-footer {
    padding: 20px 20px;
  }

  .footer-message h2,
  .footer-message h3 {
    font-size: 28px;
    line-height: 36px;
  }

  .footer-contact-info {
    gap: 15px;
  }

  .footer-contact-info > div {
    max-width: 100%;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }

  .footer-links div {
    flex: 1 1 100%;
  }

  .footer-links h4 {
    font-size: 1.1rem;
  }

  .footer-logo {
    max-width: 120px;
    margin-bottom: 20px;
  }

  .footer-bottom {
    font-size: 0.75rem;
    padding-top: 15px;
  }
}
