footer {
  background-color: #abc1b4;
  position: relative;
}

.subscribe_title {
  color: #4A553E;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.email_box, .submit_box {
  width: 100%;
  max-width: 400px;
  padding: 10px;
  border: 4px solid #d9d9d9 !important;
  border-radius: 5px !important;
  font-weight: 600!important;
  text-align: center;
}

.submit_box {
  background-color: rgba(255, 255, 255, 0.5) !important;
  color: #4a553e !important;
  transition: all 0.3s ease-in-out;
  margin-top: 10px;
}

.submit_box:hover {
  color: #4a553e!important;
  border: 4px solid #4a553e !important;
  background-color: rgba(255, 255, 255, 0.5) !important;
}

.footer-heading {
  color: #4A553E;
  font-weight: bold;
  font-size: 1.5rem;
}

.footer-text {
  font-size: 1rem;
  text-align: justify;
  max-width: 500px;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 10px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background-color: #F3F3F5;
  border-radius: 5px;
  padding: 8px;
}

.site_map h5{
  text-align: justify;
}

.social-icons a svg{
  width: 30px;
  height: 30px;
}

.social-icons a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  background-color: #4A553E;
}

.social-icons a:hover svg{
  fill: #abc1b4;
}

.copyright {
  bottom: 0;
  padding: 15px;
  background-color: #4A553E;
  text-align: right;
}

/* Responsive Design */
@media (max-width: 992px) {
  .d-flex.flex-column.flex-lg-row {
    flex-direction: column !important;
    align-items: center !important;
  }
  
  .w-lg-33 {
    width: 100% !important;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .subscribe_title {
    font-size: 1.2rem;
  }

  .footer-text {
    font-size: 0.9rem;
  }

  .social-icons a {
    width: 35px;
    height: 35px;
  }
}
