/* this is for new content css */
.header {
  position: relative;
}
.header-lang {
  position: fixed;
  right: 25px;
  top: 25px;
  z-index: 1000;
}
.copy-right{
  padding: 0 24px;
}
@media (max-width: 992px) {
  .header-lang {
    right: 15px;
  }
}

.lang-trigger {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 18px;
  line-height: 36px;
  text-align: center;
  cursor: pointer;
}

.lang-menu {
  position: absolute;
  right: 0;
  top: 46px;
  text-align: left;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 8px;
  min-width: 190px;
  display: none;
  backdrop-filter: blur(4px);
}

.lang-menu.open {
  display: block;
}

.lang-menu a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 8px;
  font-weight: 700;
}

.lang-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lang-menu a.active {
  background: rgba(200, 155, 43, 0.25);
}
.title-f {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}
@media (max-width: 768px) {
  .title-f {
    margin-top: 20px;
    text-align: center;
  }
}
footer {
  width: 100%;
  background: #240202;
  padding: 2rem 0;
  line-height: 1.6;
  font-size: 14px;
  z-index: 9999;
  position: relative;
}
.logo-footer {
  width: 100%;
  max-width: 150px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding-inline: 8px;
}
.footer-social a {
  display: inline-block;
}

.footer-social img {
  width: 36px;
  height: auto;
}
.footer-support {
  margin-inline: -30px;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  background: #812424;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.footer-support:hover {
  opacity: 0.9;
}
@media (max-width: 992px) {
  .footer-support {
    padding: 10px 15px;
    font-size: 12px;
  }
}
.logo-footer {
  width: 100%;
  max-width: 150px;
}
.footer-links {
  text-align: left;
}
@media (max-width: 768px) {
  .footer-links {
    text-align: center;
  }
}
.footer-links a {
  display: block;
  color: #d4b385;
  text-decoration: none;
  margin-top: 8px;
  font-weight: 500;
  white-space: wrap;
}

.footer-links a:hover {
  opacity: 0.85;
}

.copyright {
  width: 100%;
  text-align: center;
  padding: 0 15px;
  color: #fff;
  font-size: 14px;
  background: #240202;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
}
.dmca {
  margin-block: 12px;
}
.dmca img {
  margin: unset;
  width: 70%;
}
@media (max-width: 768px) {
  .dmca {
    text-align: center;
  }
  .dmca img {
    margin: auto;
    width: 40%;
  }
}

.homepage-content {
  width: 90%;
  max-width: 1140px;
  margin: 40px auto 0;
  padding: 15px;
  font-size: 18px;
  color: white;
}
.homepage-content ul {
  list-style: disc;
  padding-left: 2rem;
}
.sub-page-content {
  width: 90%;
  max-width: 1140px;
  margin: 40px auto 0;
  padding: 15px;
  border: 1px solid #453800;
  border-radius: 30px;
  background: #0000008a;
  font-size: 18px;
}
.homepage-img {
  text-align: center;
  margin-block: 20px;
}
.sub-page-content .sub-title01,
.homepage-content .sub-title01 {
  font-size: 22px;
  color: #ffe5b7;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}

.sub-page-content .sub-title02,
.homepage-content .sub-title02 {
  font-size: 18px;
  color: #ffe5b7;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: 700;
}
.sub-page-content .sub-title03 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #ffd996;
}
.sub-page-content .sub-list {
  padding-left: 30px;
  margin-bottom: 10px;
  list-style: disc;
  padding-left: 2rem;
}

.sub-page-content .sub-list li {
  line-height: 1.5;
  color: white;
}

.sub-page-content p,
.sub-page-content i {
  margin-bottom: 12px;
  color: white;
  line-height: 1.5;
  font-size: 16px;
}
/* FAQ Specific Styles */
.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #333;
  padding-bottom: 20px;
}
.faq-question {
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 10px;
  font-size: 1.1em;
}
.faq-answer {
  line-height: 1.6;
}
