* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
}

.bmace-footer {
  background-color: #000;
  color: #f5f5f5;
  padding: 40px 20px 20px;
  width: 100vw;
  overflow-x: hidden;
  font-weight: normal;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1300px;
  margin: 0 auto;
  gap: 30px;
}

.footer-section {
  flex: 1 1 260px;
  min-width: 240px;
}

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.footer-logo {
  width: 60px;
  height: auto;
}

.company-name {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
}

.footer-section h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #fff;
  display: flex;
  align-items: center;
}

.yellow-line {
  width: 4px;
  height: 18px;
  background-color: #f7c200;
  margin-right: 10px;
  display: inline-block;
}

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

.footer-section ul li {
  font-size: 14px;
  color: #ccc;
  font-weight: 400;
  margin-bottom: 6px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 10px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social a {
  color: #f5f5f5;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #f7c200;
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding-top: 15px;
  margin-top: 30px;
  font-size: 13px;
  color: #999;
}

hr {
  border: none;
  border-top: 1px solid #444;
  margin: 4px 0;
  opacity: 0.4;
}

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

  .footer-section {
    width: 100%;
  }

  .footer-logo-wrapper {
    flex-direction: row;
    align-items: center;
  }

  .footer-logo {
    width: 50px;
  }

  .footer-social {
    margin-bottom: 15px;
  }
}