.content-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 60px 80px;
  font-family: var(--font-main);
  color: var(--text-dark);
}

.content-page__hero {
  margin: 0 -60px 48px;
  height: 320px;
  overflow: hidden;
  background: var(--bg-light);
}

.content-page__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.content-page__intro {
  margin-bottom: 40px;
}

.content-page__intro h1,
.content-page__body h1,
.blog-article h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 16px;
}

.content-page__intro p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 640px;
}

.content-page__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  max-width: 720px;
}

.content-page__back {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-list__card h2 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin: 10px 0;
}

.blog-list__card h2 a {
  color: inherit;
}

.blog-list__card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 12px;
}

.blog-list__image {
  display: block;
  height: 200px;
  margin-bottom: 12px;
  border-radius: var(--radius);
  overflow: hidden;
}

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

.blog-list__more {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

.blog-article {
  max-width: 760px;
}

.blog-article__cover {
  display: block;
  height: 360px;
  margin: 24px 0 32px;
  border-radius: var(--radius);
  overflow: hidden;
}

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

.blog-article__body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-dark);
}

.blog-article__body p {
  margin-bottom: 16px;
}

.blog-article__body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 16px 0;
}

.contact-page {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--bg-white);
}

.contact-intro {
  padding: 72px 60px 48px;
  max-width: 760px;
}

.contact-intro__title {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.contact-intro__text {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 28px;
}

.contact-intro__meta {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.contact-intro__meta li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-dark);
}

.contact-intro__meta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--text-dark);
}

.contact-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  padding: 0 60px 80px;
}

.channel-card {
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  background: var(--bg-white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.channel-card__icon {
  width: 28px;
  height: 28px;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.channel-card__icon svg {
  width: 100%;
  height: 100%;
}

.channel-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.channel-card__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.channel-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 24px;
}

.channel-card__btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 1px solid var(--text-dark);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  background: var(--bg-white);
  color: var(--text-dark);
  transition: background 0.2s ease, color 0.2s ease;
}

.channel-card__btn:hover {
  background: var(--text-dark);
  color: #ffffff;
}

.faq {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 64px;
  padding: 40px 60px 96px;
  align-items: start;
}

.faq__title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.faq__list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
}

.faq-item__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__panel {
  display: none;
  padding: 0 32px 20px 0;
}

.faq-item.is-open .faq-item__panel {
  display: block;
}

.faq-item__panel p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.content-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.content-pagination__btn {
  padding: 8px 14px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--bg-white);
}

.content-pagination__btn.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .content-page {
    padding: 32px 32px 64px;
  }

  .content-page__hero {
    margin: 0 -32px 36px;
  }

  .blog-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-intro,
  .contact-channels,
  .faq {
    padding-left: 32px;
    padding-right: 32px;
  }

  .contact-intro__title {
    font-size: 36px;
  }

  .contact-channels {
    grid-template-columns: 1fr;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq__title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .content-page {
    padding: 24px 20px 56px;
  }

  .content-page__hero {
    margin: 0 -20px 28px;
    height: 220px;
  }

  .content-page__intro h1,
  .content-page__body h1,
  .blog-article h1 {
    font-size: 28px;
  }

  .blog-list {
    grid-template-columns: 1fr;
  }

  .contact-intro,
  .contact-channels,
  .faq {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-intro {
    padding-top: 40px;
  }

  .contact-intro__title {
    font-size: 30px;
  }

  .blog-article__cover {
    height: 220px;
  }
}
