.navbar-header {
  background: #13233e;
}

.breadcrumb-links-link.active,
.breadcrumb-links-link a {
  color: #121212;
}

.breadcrumb-links svg path {
  fill: #121212;
}

.blog {
  margin-top: 64px;
}

.breadcrumb-links {
  justify-content: flex-start;
}

.blog-header {
  padding: 5rem 0;
}

.blog-header img {
  border-radius: 10px 50px;
  margin-bottom: 32px;
}

.blog-header__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.blog-header__content p strong {
  color: #3565b1;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 8px;
}

.blog-header__content p {
  color: #181d27;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.blog-header__content-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-header__content-links__link {
  border-radius: 4px;
  border: 1px solid #e5e5e5;
  background-color: #fff;
  box-shadow: 0px 1px 2px 0 rgba(10, 13, 18, 0.05);
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #a4a7ae;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  transition: color 0.2s ease;
}

.blog-header__content-links__link:hover {
  color: #284c85;
}

.blog-header__content-links__link svg path {
  transition: fill 0.2s ease, stroke 0.2s ease;
}

.blog-header__content-links__link:hover svg path {
  fill: #284c85;
}

.blog-header__content-links__link:first-child:hover svg path {
  fill: none;
  stroke: #284c85;
}

.copy-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #3565b1;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  z-index: 1000;
}

.copy-popup.show {
  opacity: 1;
  visibility: visible;
}

.blog-article {
  padding: 5rem 0;
  background-color: #f6f5f5;
}

.blog-article h2 {
  color: #181d27;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -1.08px;
  margin: 24px 0 16px 0;
}

.blog-article h3 {
  color: #181d27;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -1.08px;
  margin: 24px 0 16px 0;
}

.blog-article p {
  color: #424242;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin: 16px 0 8px 0;
}

.blog-article ul,
.blog-article ol {
  margin: 8px 0 16px 0;
  list-style-position: inside;
}

.blog-article li {
  color: #424242;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 8px;
}

.more-blog {
  padding: 5rem 0;
}

.blog-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.blog-cards__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.blog-cards__card img {
  width: 100%;
  object-fit: cover;
}

.blog-cards__card-content {
  padding: 20px;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
}

.blog-cards__card-content h3 {
  color: #3565b1;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 24px;
}

.blog-cards__card-content p {
  color: #5c5c5c;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 24px;
}

.faq {
  padding: 2.5rem 0 5rem;
  background-color: #f6f5f5;
}

.faq .section-title {
  margin-bottom: 5rem;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: #f6f5f5;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: #fefefe;
  border: none;
  text-align: left;
  cursor: pointer;
  gap: 16px;

  color: #424242;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -1.08px;
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  background-color: #fefefe;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 1.5rem;
}

.faq-answer p {
  color: #424242;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 8px;
}

@media screen and (max-width: 768px) {
  .faq-question {
    font-size: 1.25rem;
    padding: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .blog-article h2 {
    font-size: 1.75rem;
  }
  .blog-article h3 {
    font-size: 1.5rem;
  }
  .blog-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .blog {
    margin-top: 98px;
  }
  .blog-header img {
    border-radius: 10px 75px;
  }
  .blog-header__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .blog-article h2 {
    font-size: 2rem;
  }
  .blog-article h3 {
    font-size: 1.75rem;
  }
  .blog-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 1280px) {
  .blog-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}
