/* Google Font CDN Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body{
  background: #f2f2f2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
footer{
  background: #333;
  color: #fff;
  width: 100%;
  padding: 20px 0;
}
.footer-container{
  width: 85%;
  margin: auto;
  display: flex;
  flex-direction: column;
}
.footer-content{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-section{
  flex: 1;
  margin: 10px;
  min-width: 200px;
}
.footer-section h3{
  margin-bottom: 15px;
}
.footer-section p{
  margin-bottom: 10px;
}
.footer-section ul{
  list-style: none;
  padding: 0;
}
.footer-section ul li{
  margin-bottom: 10px;
}
.footer-section ul li a{
  color: #fff;
  text-decoration: none;
}
.footer-section ul li a:hover{
  text-decoration: underline;
}
.footer-section .social a{
  color: #fff;
  font-size: 20px;
  margin-right: 10px;
  display: inline-block;
  transition: color 0.3s;
}
.footer-section .social a:hover{
  color: #f1c40f;
}
.footer-map{
  margin-top: 20px;
}
footer iframe{
  width: 100%;
  height: 300px;
  border: none;
}

/* Footer Credit Section */
.footer-credit {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #ecf0f1;
}

.footer-credit a {
  color: #3498db;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.footer-credit a:hover {
  color: #ecf0f1;
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-content{
    flex-direction: column;
  }
  .footer-map{
    margin-top: 20px;
  }
}
