.footer-container{
  background: linear-gradient(135deg,var(--hm-primary),var(--hm-primary-dark));
  padding: 10px 20px;
}

.service-container{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(175, 175, 175);
  gap: 10px;
}
.service-sections{
  display: flex;
  flex-direction: column;
}
.footer-logo{
  display: flex;
  justify-content: left;
}
.service-sections h2{
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  display: flex;
  color: white;
}
.service-sections a,.contact-items, .detail-page-name a{
  text-decoration: none;
  color: white;
  padding: 3px 10px;
  border-radius: 6px;
}
.service-sections a:hover{
  background-color: #00463f61;
}

.detail-pages-container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  flex-wrap: wrap;
  gap: 10px;
}
.detail-pages{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
  color: white;
}
.detail-page-name, .copy-rights{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px 10px;
  border-radius: 6px;
}
.detail-page-name:hover{
  background-color: #00463f61;
}
.detail-page-name a{
  color: white;
  text-decoration: none;
}
.social-media-links{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 20px;
  flex-shrink: 0;  
}
.social-media-links a{
  color: white;
  text-decoration: none;
  transition: all 0.2ms;
}
.social-media-links a:hover{
  transform: translateY(-2px);
}

@media (max-width: 910px) {
  .detail-pages-container {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .detail-pages {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .detail-pages {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .detail-page-name, .copy-rights {
    width: 100%;
    justify-content: center;
    padding: 0px;
  }
  .social-media-links {
    margin-top: 4px;
    gap: 20px;
    font-size: 18px;
  }
  .service-sections h2{
    font-size: 1.2rem;
  }
}

@media (max-width: 376px) {
  .detail-page-name, .service-sections a{
    font-size: 14px;
  } 
}