.baichen-footer {
  background: #000;
  color: #fff;
  padding-bottom: 20px;
}

.subscribe-section {
  background: #000;
  text-align: center;
  padding: 80px 40px;
  max-width: 1024px;
  margin: 0 auto;
}

.subscribe-section h2 {
  color: #fff
}

.subscribe-section p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  line-height: 1.5;
}

.subscribe-form {
  display: flex;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 5px;
  position: relative;
}

.subscribe-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 15px 25px;
  color: #fff;
  font-size: 16px;
}

.subscribe-form .crmFormVali-error {
  bottom: -20px;
  left: 8px;
  top: initial;
  right: inherit;
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.subscribe-form button {
  background: #1E6BB8;
  color: #fff;
  border: none;
  padding: 15px 35px;
  border-radius: 100px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.subscribe-form button:hover {
  background: #1557A0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #fff;
}
.footer-menu ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.footer-menu ul li {
  width: 49%;
}
.footer-menu ul li,
.footer-products ul li {
  margin-bottom: 15px;
}

.footer-menu ul li a,
.footer-products ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-menu ul li a:hover,
.footer-products ul li a:hover {
  color: #fff;
}

.product-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer-contact p a {
  color: rgba(255, 255, 255, 0.7);
}
.footer-contact p a:hover {
  color: var(--color-primary);
}
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 10px;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom .logo img {
  width: 100px;
  padding-right: 10px;
}

.footer-bottom .copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}
.footer-bottom .copyright a {
  color: rgba(255, 255, 255, 0.7);
}
.footer-bottom .copyright a:hover {
  color: var(--color-primary);
}
.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #525252;
  transition: all 0.3s;
}

.social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.social-links i {
  font-size: 20px;
}

@media (max-width: 1400px) {

}

@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .subscribe-section h2 {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
  .footer-bottom .container {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom .container .copyright {
    margin: 10px 0;
  }
  .subscribe-section {
    padding: 60px 20px;
  }

} 

@media(max-width:480px){
  .subscribe-form input {padding: 10px 10px;font-size: 12px;}
  .subscribe-form button {padding: 10px 30px;font-size: 10px;}
}