* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
}

body {
  font-family: Arial, sans-serif;
  background-color: rgba(249, 249, 249, 1);
  color: rgba(40, 40, 40, 1);
  font-size: 15px;
  letter-spacing: 0%;
  font-weight: 400;
}

.header {
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 0px;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0px 20px;
}

.hamburger {
  display: none;
  cursor: pointer;
}
.hamburger img {
  width: 24px;
  height: 24px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  display: block;
  max-height: 40px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 62px;
}

.main-nav a {
  text-decoration: none;
  color: rgba(40, 40, 40, 1);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0%;
  transition: color 0.3s;
  text-transform: uppercase;
}

.main-nav a:hover {
  color: #555;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  padding: 10px;
  display: none;
  list-style: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu li {
  margin-bottom: 5px;
}
.dropdown-menu a {
  color: #333;
}
.dropdown-menu a:hover {
  color: #555;
}

.language-switch {
  gap: 24px;
}

.language-switch-desktop {
  display: flex;
}

.language-switch a {
  text-decoration: none;
  color: rgba(40, 40, 40, 1);
  font-size: 15px;
  letter-spacing: 0%;
  margin: 0 5px;
  transition: color 0.3s;
  font-weight: bold;
}

.language-switch a:hover {
  color: #555;
}

.separator {
  color: rgba(40, 40, 40, 1);
}

.main .article {
  margin: 30px 0px;
  background-color: rgba(255, 255, 255, 1);
  padding: 30px;
  width: 100%;
  max-width: 930px;
  box-shadow: 0 1px 3px 0 rgba(28, 28, 28, 0.05);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.article-title {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -1.44px;
}

.main .article a {
  color: rgba(0, 123, 255, 1);
  text-decoration: none;
}

.main .article p {
  line-height: 24px;
}

.main .article h3 {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
}

/* Quiz */
.quiz {
  background-color: #fff;
  padding: 20px 20px 30px 20px;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin: auto;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.quiz-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
}

.quiz-body {
  font-size: 18px;
  margin-bottom: 40px;
}

.quiz-stage {
  text-decoration: underline;
}

.answers {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.quiz-btn {
  padding: 10px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background-color: #007bff;
  color: #fff;
  font-weight: 600;
}

.quiz-btn:hover {
  opacity: 0.9;
}

.yes-btn {
  background-color: #007bff;
}

.no-btn {
  background-color: #999;
}

/* Footer */
.footer {
  background-color: #fff;
  padding: 50px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 39px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.footer-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.col-title {
  font-size: 14px;
  line-height: 32px;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(40, 40, 40, 1);
}

.footer-logo img {
  max-height: 40px;
}

.footer-links {
  list-style: none;
  width: 100%;
}

.footer-links li {
  margin-bottom: 5px;
  width: 100%;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: opacity(0.8);
}

.social-icons {
  display: flex;
  gap: 8px;
  padding-left: 20px;
  margin-top: 15px;
}
.social-icons a img {
  width: 32px;
  height: 32px;
}

.accordion .accordion-header {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.accordion .sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  list-style: none;
}

.accordion.open .sub-menu {
  max-height: 400px;
}

.arrow-icon {
  display: inline-block;
  transition: transform 0.3s ease;
  vertical-align: middle;
}

.accordion.open .arrow-icon {
  transform: rotate(180deg);
}

.link {
  color: rgba(0, 123, 255, 1);
  text-decoration: none;
}

.blue-link {
  width: 100%;
  color: rgba(0, 123, 255, 1) !important;
  border-bottom: 1px solid rgba(40, 40, 40, 0.1);
  padding-bottom: 6px;
  margin-bottom: 5px;
}

.sub-menu li a {
  display: block;
  padding-left: 40px;
}

.no-scroll {
  overflow: hidden;
}

.language-switch-mobile {
  display: none;
}

@media (max-width: 1024px) {
  .container {
    max-width: 100%;
  }
  .main .article {
    max-width: 100%;
  }

  .lander-form-field .lander-submit {
    font-size: 16px !important;
  }
  .lander-form-field .lander-submit:hover {
    font-size: 16px !important;
  }
}

@media (max-width: 768px) {
  .article-title {
    font-size: 24px;
    line-height: 32px;
  }

  .main .article h3 {
    font-size: 24px;
    line-height: 32px;
  }

  .hamburger {
    display: flex;
  }
  .language-switch-desktop {
    display: none;
  }

  .language-switch-mobile {
    display: flex;
    margin-top: 40px;
  }

  .main-nav {
    display: none;
    position: fixed;
    top: 60px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    padding: 20px;
  }
  .main-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
    gap: 30px;
  }

  .main-nav.active {
    display: block;
  }

  .footer-content {
    flex-direction: column;
  }
}

.footer-disclaimer,
.footer-license {
  border-bottom: 1px solid #3e3e3e;
  margin-bottom: 30px;
  padding-bottom: 30px;
  line-height: 1.5;
}
