.footer{
  background:#1f2937;
  color:white;
  padding:60px 20px 30px;
  border-top:1px solid #374151;
  width:100%;
  max-width:100%;
  overflow-x:hidden;
  box-sizing:border-box;
}

.footer-inner{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  align-items:start;
  column-gap:40px;
  row-gap:20px;
  width:100%;
  box-sizing:border-box;
}

.footer h3,
.footer h4{
  margin-bottom:15px;
}

.footer p,
.footer a,
.footer li,
.footer-bottom{
  font-size:15px;
  color:#ccc;
}

.footer ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer li{
  margin-bottom:8px;
}

.footer a{
  color:#d1d5db;
  text-decoration:none;
}

.footer a:hover{
  color:white;
}

.footer-bottom{
  margin-top:40px;
  text-align:center;
  color:#aaa;
}

@media (max-width:768px){
  .footer-inner{
    grid-template-columns:1fr;
    gap:24px;
  }

  .footer-col{
    min-width:0;
  }

  .footer p,
  .footer a,
  .footer li{
    overflow-wrap:anywhere;
    word-break:break-word;
  }
}