
#footer-section {
      background-color: black;
    }
    
    .footer-main {
      background-image: url("/assets/images/footer.jpg");
      background-position: center;
      background-repeat: repeat;
      color: #fff;
      padding: 20px 0;
      position: relative;
    }
    
    .footer-main::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
    }
    
    .footer-content {
      position: relative;
      z-index: 2;
    }
    
    .footer-heading {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 10px;
      white-space: nowrap;
    }
    
    .footer-text p {
      margin: 0;
      padding: 2px 0;
      font-size: 14px;
    }
    
    .footer-copyright {
      background-color: #222;
      color: white;
      padding: 15px 0;
      text-align: center;
      font-weight: 700;
      font-size: 14px;
    }
    
    .footer-email {
      word-break: break-all;
    }
    
    .footer-column {
      padding: 0 10px;
      flex: 1;
      min-width: 0; /* Allow columns to shrink below min-content if needed */
    }
    
    .footer-row {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      padding-bottom: 15px;
      margin: 0 -10px; /* Counteract padding on columns */
    }
    
    /* Text truncation for very small screens */
    .footer-text p {
      overflow: hidden;
      text-overflow: ellipsis;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .footer-column {
        min-width: 180px;
      }
      
      .copyright-text {
        font-size: 12px;
      }
    }
