/* Footer Styling */
/* Reset & base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


.site-footer {
  background-color: #0c111c;
  color: #ffffff;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1 1 200px;
  margin: 10px;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #ffffff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #ffffff;
}

.social-icons i {
  margin-right: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 0.95rem;
  color: #ccc;
}

.footer-bottom span {
  color: red;
}
@media screen and (max-width: 768px) {
  .footer-content {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    text-align: left;
  }

  .footer-section {
    flex: 1 1 40%;
    max-width: 45%;
  }

  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.95rem;
    color: #ccc;
  }
}

@media screen and (max-width: 480px) {
  .footer-section {
    flex: 1 1 100%;
    max-width: 100%;
    text-align: center;
  }

  .footer-section ul {
    padding-left: 0;
  }
}

