.footer-container {
  background-color: #020e2a;
  color: white;
  padding: 40px 0;
}

.footer-container .footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 2fr 2fr 1.2fr 1.8fr;
  gap: 30px;
  align-items: start;
}

.footer-container>div {
  display: flex;
  flex-direction: column;
}

h2 {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 4px 0;
}

h2 img {
  max-width: 70px;
  cursor: pointer;
  display: block;
}

.footer-content {
  font-size: 14px;
  color: #9ca3af;
  margin: 0 0 24px 0;
  text-align: justify;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 12px;
  margin: 0;
}

.social-links a {
  width: 32px;
  height: 32px;
  background-color: #2f3b3c;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  color: white;
  transition: background-color 0.3s;
  text-decoration: none;
}

.social-links a:hover {
  background-color: #eab308;
}

h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 24px 0;

}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

li {
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
}

li a {
  font-size: 13px;
  color: #9ca3af;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s;
}

li a:hover {
  color: #eab308;
}

li a span:first-child {
  color: #eab308;
  margin-right: 8px;
  flex-shrink: 0;
}

li span:first-child {
  color: #eab308;
  margin-right: 10px;
  font-size: 14px;
  flex-shrink: 0;
}

li span:nth-child(2) {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.5;
}

.footerhover {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}

.footerhover:hover {
  color: #eab308;
}

/* Service Links - Two Column Layout */
.Service ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  grid-template-rows: repeat(3, auto);
  gap: 12px;
  grid-auto-flow: column;
}

.Service ul li:nth-child(1),
.Service ul li:nth-child(2),
.Service ul li:nth-child(3) {
  grid-column: 1;
}

.Service ul li:nth-child(4),
.Service ul li:nth-child(5),
.Service ul li:nth-child(6) {
  grid-column: 2;
}

.Service ul li a {
  white-space: nowrap;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .footer-container .footer-container {
    grid-template-columns: 2fr 1.5fr 1fr 1.5fr;
    gap: 24px;
  }
}

@media (max-width: 1024px) {
  .footer-container .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .Service ul li a {
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .footer-container .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  h3 {
    white-space: normal;
  }

  .Service ul {
    grid-template-columns: 1fr;
  }

  .Service ul li {
    grid-column: 1 !important;
  }

  .Service ul li a {
    white-space: normal;
  }
}

.SupportLinks {
  margin-left: 10px;
}

.footer-service0 {
  margin-left: 20px;
}

.footer-service {
  text-align: center;
}