.footer-page {
  background-color: #242424;
  color: #b5b5b5;
  padding: 50px 40px 20px;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 40px;
}

.footer-page h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.contact-footer .container-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-footer .list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.5;
}

.contact-footer img {
  width: 16px;
  height: auto;
  margin-top: 3px;
}

.contact-footer p {
  margin: 0;
  color: #b5b5b5;
}

.social-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.social-footer ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 8px;
}

.social-footer a {
  text-decoration: none;
}

.social-footer li {
  width: 36px;
  height: 36px;
  background-color: #3a3a3a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-footer li img {
  width: 16px;
  height: auto;
}

.social-footer li:hover {
  background-color: #f0c26a;
}

.news-footer {
  font-size: 14px;
  line-height: 1.6;
}

.news-footer a {
  color: #f0c26a;
  text-decoration: none;
}

.news-footer a:hover {
  text-decoration: underline;
}

.bottom-footer {
  grid-column: 1 / -1;
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid #3a3a3a;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #8c8c8c;
}

.bottom-footer > a{ 
  text-decoration: none;
  color:#8c8c8c;
}

@media (max-width: 768px){

  .footer-page{
    padding: 40px 20px 20px;
  }

  .footer-container{
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }

  .contact-footer .list-item{
    justify-content: center;
    text-align: left;
  }

  .social-footer{
    align-items: center;
  }

  .social-footer ul{
    justify-content: center;
  }

  .bottom-footer{
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

}