.section-container {
  max-width: 1200PX;
  margin: 0 auto;
  padding: 40px 20px;
  background: #161616;

  box-sizing: border-box;
}


.section-container h2,
.section-container h3 {
  margin-bottom: 20px;
  text-align: left;
  font-weight: 600;
  color: #ffffff;
}


.faq-container {
  max-width: 100%;
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #302f2f;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: rgb(255, 255, 255);
  font-size: 16px;
  padding: 10px 0;
  cursor: pointer;
  transition: color 0.3s;
}

.faq-question:hover {
  color: #fdfdfda6;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 0;
}

.faq-answer.open {
  max-height: 200px;
  padding: 10px 0;
}

.social-icons {
  margin-top: 40px; 
}

.social-title {
  margin-bottom: 15px;
  text-align: left;
  font-weight: 600;
  font-size: 20px;
  color: #ffffff;
}


.social-icons a {
  display: inline-block;
  margin-right: 20px;
}

.social-icons img {
  width: 30px;
  transition: transform 0.3s ease;
  vertical-align: middle; 
}

.social-icons img:hover {
  transform: scale(1.2);
}

.site-credit {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #ccc;
  text-align: left;
  font-size: 14px;
  color: #ebebebda;
}


.footer-links {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  color: white;
  border-top: 1px solid #ccc;
  padding-top: 20px;
  font-size: 14px;
  justify-content: space-between;
  flex-direction: row;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffffd5;
}

.trust-badges {
  display: flex;
  gap: 20px;
  align-items: center;
}

.trust-badges img {
  height: 30px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.trust-badges img:hover {
  transform: scale(1.1);
}


img.white-icon {
  filter: invert(1) brightness(2);
}
