#prinx-custom-footer {
    background-color: #000000; 
    color: #ffffff;            
    padding: 40px 20px;
    text-align: center;        
}

.footer-newsletter-section {
    max-width: 600px;
    margin: 0 auto 30px auto;
    text-align: center;
}

.newsletter-title {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}


.newsletter-form-container {
    display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin: 0 auto;
  width: fit-content;
}

.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;               
    margin-bottom: 30px;
}

.footer-social-links a img {
    width: 35px;    
    height: 35px;
    border-radius: 50%; 
    transition: opacity 0.3s;
}

.footer-social-links a img:hover {
    opacity: 0.8;
}


.footer-legal-links {
  margin-bottom: 20px;
  text-align: center;
}

.footer-legal-links a {
    color: #ffffff;        
    text-decoration: none; 
    margin: 0 15px;
    transition: color 0.3s;
}

.footer-legal-links a:hover {
    color: #CA1F26; 
}

.footer-copyright {
    text-align: center;
}