/* Footer Base */
.footer {
  background: #111;
  color: #ddd;
  font-family: Arial, sans-serif;
  padding: 50px 20px 20px;
}

.footer h2,
.footer h3 {
  color: #fff;
  margin-bottom: 15px;
}

.footer h2 {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.4;
}

.footer h3 {
  font-size: 16px;
  border-left: 3px solid #00c853;
  padding-left: 8px;
}

.footer p {
  font-size: 14px;
  line-height: 1.6;
  color: #bbb;
  text-align: justify;
}

/* Layout */
.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  text-align: justify;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #bbb;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #00c853;
}

/* Contact Section */
.footer-contact p {
  margin: 5px 0;
}

.social-icons a {
  display: inline-block;
  margin-right: 8px;
  font-size: 16px;
  color: #bbb;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #00c853;
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 13px;
}

.footer-bottom .highlight {
  color: #00c853;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;

  }
  .footer h3 {
    border-left: none;
    padding-left: 0;
            text-align: justify;
  }
}
