.footer-transparent {
  background: linear-gradient(to bottom, #e6e6e6, transparent);
  border-top: 1px solid #ddd;
  font-family: Arial, sans-serif;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  height: 88px;
}

.footer-brand strong {
  font-size: 20px;
  color: #f5b400;
}

.footer-brand span {
  font-size: 12px;
  color: #555;
}

.footer-center {
  text-align: center;
  font-size: 21px;
  font-weight: 300;
  color: #333;
}

.footer-right {
  font-size: 21px;
  font-weight: 300;
  color: #333;
  text-align: center;
}

.footer-divider {
  width: 3px;
  height: 100px;
  background-color: #000;
}

.footer-bottom {
  text-align: center;
  font-size: 15px;
  color: #555;
  border-top: 1px solid #ddd;
  padding-top: 6px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-divider {
    width: 80%;
    height: 2px;
  }

  .footer-left {
    justify-content: center;
  }

  .footer-logo {
    height: 60px;
  }

  .footer-center {
    font-size: 16px;
    line-height: 1.4;
  }

  .footer-right {
    font-size: 16px;
  }

  .footer-bottom {
    font-size: 13px;
    padding: 8px 10px;
    line-height: 1.4;
  }
}