* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
}
body {
  background: radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.08),
      transparent 60%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(120, 120, 120, 0.12),
      transparent 70%
    ),
    linear-gradient(120deg, #1e1e1e, #3a3a3a);
  font-family: "Roboto Condensed", sans-serif;
}
header {
  padding: 20px 0;
  background: #fff;
  box-shadow: 0 2px 18px 0 rgba(129, 162, 182, 0.2);
}
.container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}

.site-header {
  position: relative;
  background: linear-gradient(
    to right,
    #000 0%,
    #1a1a1a 35%,
    #333 65%,
    #000 100%
  );
  padding: 20px 0;
  box-shadow: 0 2px 18px rgba(129, 162, 182, 0.2);
  z-index: 100;
  border-bottom: 2px solid #985900;
}
.desktop-nav ul {
  display: flex;
  justify-content: center;
}
.desktop-nav li {
  list-style: none;
}
.desktop-nav a {
  padding: 6px 10px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease-in-out;
  font-size: 16px;
}
.desktop-nav li a:hover {
  background: linear-gradient(135deg, #f4aa00, #ffdd55, #d18e00);
  color: #fff;
  transform: scale(1.1);
}
.header-logo img {
  width: 250px;
  height: auto;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #ffffff;
  margin: 5px 0;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: 0.35s ease;
  z-index: 9999;
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu ul {
  list-style: none;
  text-align: center;
  padding: 0;
}
.mobile-menu li {
  margin: 18px 0;
}
.mobile-menu a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  font-weight: 600;
}
.menu-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 38px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}
.banner-1 {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}
.banner-1 img {
  width: 100%;
  border-radius: 20px;
}
.read-more {
  display: block;
  width: 130px;
  text-align: center;
  background: linear-gradient(135deg, #7a0b0b, #b11217, #ff2a2a);
  color: #fff;
  padding: 5px 0;
  text-transform: uppercase;
  margin: 10px 0 0 0;
}
.read-more:hover {
  background: linear-gradient(135deg, #ff2a2a, #c4161c, #8f0f0f);
}
.article {
  padding: 3rem 2rem;
  background: rgba(2, 2, 2, 0.623);
  margin: 2rem 0;
  text-align: justify;
  border-radius: 20px;
  color: white;
}

.article h1,
h2,
h3 {
  color: #f8b401;
}
.article a {
  color: #c4161c;
}
.article p {
  line-height: 1.6;
  letter-spacing: 1px;
  margin: 1rem 0;
}
.banner-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 2rem 0;
}
.banner-2 img {
  max-width: 500px;
  width: 100%;
  border-radius: 20px;
}
.secondary-heading {
  background: linear-gradient(135deg, #f4aa00, #ffdd55, #d18e00);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
}
.secondary-heading a {
  font-size: 32px;
  font-weight: 500;
  color: #000000;
}
.article .container p {
  margin: 30px auto;
}
.article .container a {
  display: block;
  width: 200px;
  text-align: center;
  border-radius: 100px;
  background: linear-gradient(135deg, #f4aa00, #ffdd55, #d18e00);
  color: #fff;
  padding: 10px 0;
  text-transform: uppercase;
  margin: 10px auto 0;
  transition: 0.3s ease-in-out;
}
.article .container a:hover {
  background: #cf9102;
  color: #fff;
}
.post {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  gap: 1rem;
  background: linear-gradient(135deg, #f4aa00, #ffdd55, #d18e00);
  border-radius: 20px;
  width: 100%;
  margin-bottom: 2rem;
}
.post img {
  max-width: 500px;
  width: 100%;
}

.post h1 {
  width: 100%;
  text-align: center;
}

.post p {
  width: 100%;
  text-align: justify;
  line-height: 1.6;
  letter-spacing: 1px;
}

.bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-top: 2px solid #ffdd55;
  border-bottom: 2px solid #ffdd55;
  margin: 2rem 0;
}

.bottom-links a {
  color: #f8b401;
}

.bottom-links a:hover {
  color: #ff2a2a;
}

.faq {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0;
  width: 100%;
}

.faq h2 {
  color: #c4161c;
}

.left-side {
  width: 100%;
  background: rgba(2, 2, 2, 0.623);
  padding: 2rem 3rem;
  border-radius: 20px 0 0 20px;
  color: white;
}

.right-side {
  width: 100%;
  background: linear-gradient(135deg, #f4aa00, #ffdd55, #d18e00);
  padding: 2rem 3rem;
  border-radius: 0 20px 20px 0;
}

.right-side p,
.left-side p {
  line-height: 1.6;
  letter-spacing: 1px;
  margin: 1rem 0;
}
.left-side h2 {
  margin-top: 1rem;
}

.footer {
  padding: 15px 0;
  text-align: center;
  background: #16171c;
  color: #fff;
  position: relative;
  border-top: 2px solid #985900;
}

.footer-bot-menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.footer-bot-menu li {
  list-style: none;
}

.footer-bot-menu a,
.footer-copyright a {
  text-decoration: none;
  color: #f8b401;
}

.footer-copyright {
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }

  .header-logo {
    flex: 0 0 auto;
    display: block;
  }
  .header-logo a {
    display: flex;
  }
  .header-logo img {
    max-height: 40px;
    width: auto;
    height: auto;
  }
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
    position: static;
    transform: none;
  }

  .site-header {
    position: fixed;
    width: 100%;
    top: 0;
    padding: 20px 1rem;
  }
  main .banner-1 {
    flex-wrap: wrap;
  }

  main {
    margin-top: 100px;
  }
  .banner-1 p {
    max-width: 90%;
    margin: 0 auto;
  }

  .banner-1 > div {
    text-align: center;
  }

  .banner-2 {
    flex-direction: column;
  }

  .post {
    flex-direction: column;
  }

  .container {
    padding: 0 1rem;
  }

  .bottom-links {
    justify-content: center;
  }

  .footer-bot-menu ul {
    flex-wrap: wrap;
    flex-direction: column;
  }

  .secondary-heading {
    padding: 1rem 1rem;
  }

  .secondary-heading a {
    font-size: 20px;
  }
}
