.site-footer {
  background-color: #333;
  color: #fff;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 0 15px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 220px;
  min-width: 220px;
  margin-bottom: 20px;
  text-align: center;
}

.footer-logo a {
  display: block;
}

.footer-logo img {
  display: block;
  max-width: 160px;
  height: auto;
  margin: 0 auto;
}

.footer-description {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #d8d8d8;
  max-width: 220px;
  text-align: center;
}

.footer-menu,
.footer-contacts {
  flex: 1;
  min-width: 200px;
}

.footer-menu h3,
.footer-contacts h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #CF1230;
}

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

.footer-menu ul li {
  margin-bottom: 5px;
}

.footer-menu ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-menu ul li a:hover {
  color: #CF1230;
}

.footer-contacts p a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contacts p a:hover {
  color: #CF1230;
}

.footer-copyright {
  flex: 1 100%;
  margin-top: 20px;
  font-size: 0.9rem;
  color: #ccc;
  text-align: center;
}

@media (max-width: 768px) {
  .site-footer .container {
    flex-direction: column;
    align-items: center;
  }

  .footer-logo,
  .footer-menu,
  .footer-contacts {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}

@media (min-width: 992px) {
  .page-header .entry-title,
  .site-footer .footer-inner,
  .site-footer:not(.dynamic-footer),
  .header-inner,
  body:not([class*=elementor-page-]) .site-main {
    max-width: 100%;
  }
}