/* Reset default margin and padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Basic styling for body */
body {
  font-family: Arial, sans-serif;
}

/* Styling for the footer */
footer {
  background-color: rgb(160, 160, 160);
  color: #eee;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Footer main container */
.footer-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
}

/* Column styling for sections */
.footer-section {
  flex: 1;
  margin: 20px;
  min-width: 200px;
}

/* Styling for the footer headings */
.footer-section h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}

/* Styling for footer links */
.footer-links a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

/* Hover effect for footer links */
.footer-links a:hover {
  color: #00bcd4;
}

/* Social icons container */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

/* Individual social icon styling */
.social-icons a {
  color: #fff;
  font-size: 24px;
  transition: color 0.3s;
}

/* Hover effect for social icons */
.social-icons a:hover {
  color: #00bcd4;
}

/* Copyright section */
.footer-bottom {
  margin-top: 20px;
  font-size: 14px;
  color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
  }
  .footer-section {
    margin: 10px 0;
  }
}
