footer {
  background: #111;
  color: #ccc;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.footer-top-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.footer-company-name {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.footer-menu {
  display: flex;
  gap: 24px;
}

.footer-menu a {
  color: #aaa;
  font-size: 14px;
}

.footer-menu a:hover {
  color: #fff;
}

.footer-bottom-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-top: 30px;
  border-top: 1px solid #333;
}

.footer-left-wrapper {
  line-height: 1.7;
}

.footer-left-wrapper > span {
  display: block;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.footer-left-wrapper div {
  display: flex;
  gap: 10px;
  margin-bottom: 6px;
}

.footer-left-wrapper div span:first-child {
  min-width: 90px;
  color: #aaa;
}

.footer-right-wrapper {
  text-align: right;
  font-size: 13px;
  color: #999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-copy {
  margin-bottom: 10px;
  line-height: 1.6;
}

.cube-logo {
  height: 14px;
  vertical-align: middle;
  margin: 0 4px;
}

@media (max-width: 768px) {
  .footer-top-wrapper {
    align-items: flex-start;
  }

  .footer-menu {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .footer-bottom-wrapper {
    flex-direction: column;
  }

  .footer-right-wrapper {
    text-align: left;
  }
}
