
/* Footer container */
.site-footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 30px 40px; /* reduced top padding from 40px to 20px */
  background-color: #333;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  font-family: Arial, sans-serif;
}

/* Each column */
.footer-column {
  flex: 1 1 220px;
  min-width: 200px;
}

/* Headings */
.footer-column h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: red; /* changed from white */
  border-bottom: 1px solid #555;
  padding-bottom: 4px;
}

/* Paragraphs */
.footer-column p {
  font-size: 0.95em;
  line-height: 1.5;
  margin: 0;
  color: #fff; /* ensure white text */
}

/* Lists */
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 8px;
  font-size: 0.95em;
  color: #fff; /* ensure white text */
}

/* Links */
.footer-column a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: red; /* red on hover */
  text-decoration: none; /* no underline */
}

/* Responsive layout */
@media (max-width: 900px) {
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-column {
    width: 100%;
    margin-bottom: 20px;
  }
}
