/* Custom Footer Styles */
.custom-footer {
  background-color: #f5f5f5;
  padding: 40px 0 20px;
  margin-top: 40px;
  border-top: 1px solid #e0e0e0;
}

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

/* Footer Widgets Area */
.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.footer-column {
  min-width: 0;
}

/* Organization Info Styles */
#footer-1 {
  font-size: 15px;
  line-height: 1.6;
}

#footer-1 p {
  margin: 0 0 10px;
}

/* ANBI Logo Styles */
#footer-2 img {
  max-width: 150px;
  height: auto;
  display: block;
}

/* Contact Info Styles */
#footer-3 {
  font-size: 15px;
  line-height: 1.6;
}

#footer-3 .widget-title {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

#footer-3 p {
  margin: 0 0 10px;
}

/* Documents Links Styles */
#footer-4 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer-4 ul li {
  margin-bottom: 10px;
}

#footer-4 ul li a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

#footer-4 ul li a:hover {
  color: #d4175b;
}

/* General Widget Styles */
.widget {
  margin-bottom: 30px;
}

.widget-title {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Footer Bottom Area */
.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
  text-align: center;
  color: #666;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media screen and (max-width: 576px) {
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .custom-footer {
    padding: 30px 0 15px;
  }

  .footer-container {
    padding: 0 15px;
  }

  /* Center ANBI logo on mobile */
  #footer-2 img {
    margin: 0 auto;
  }
}

/* Social Icons if used */
.footer-widget .social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-widget .social-icons a {
  color: #333;
  font-size: 1.2rem;
  transition: color 0.2s ease;
}

.footer-widget .social-icons a:hover {
  color: #d4175b;
}

/* Newsletter Form if used */
.footer-widget .newsletter-form input[type="email"] {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.footer-widget .newsletter-form button {
  background: #d4175b;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.footer-widget .newsletter-form button:hover {
  background: #b01049;
}
