.footer {
    background-color: #2e2e2e;
    color: rgb(255, 255, 255);
    padding: 40px 20px 20px;
    font-size: 14px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 99;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: 180px 220px 400px;
    gap: 30px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 1000px;
    box-sizing: border-box;
    justify-content: center;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 11px;
    text-align: left;
}

.footer-column h4 {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: bold;
    color: #CF9D3F;
    text-align: left; 
}

.footer-column p {
    margin: 8px 0;
}

.footer-column a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #CF9D3F;
}

.footer-bottom {
    padding-top: 15px;
    text-align: center;
    font-size: 13px;
    color: rgb(255, 255, 255);
    width: 100%;
    box-sizing: border-box;
}

.icon-text {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    text-align: justify;
}

.icon-text i {
    margin-top: 3px;
    color: #CF9D3F;
    min-width: 16px;
}

@media (max-width: 768px) {
    .footer {
      padding: 30px 15px 15px;
      font-size: 13px;
      text-align: center;
    }
  
    .footer-container {
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: center;
      text-align: center;
      padding: 0;
    }
  
    .footer-column {
      align-items: center;
      padding-top: 5px;
      text-align: center;
    }
  
    .footer-column h4 {
      font-size: 14px;
      text-align: center;
    }
  
    .icon-text {
      justify-content: center;
      text-align: center;
      flex-direction: row;
      align-items: center;
    }
  
    .footer-bottom {
      font-size: 12px;
      padding-top: 10px;
    }
  }
  