.article-static-page {
  min-height: calc(100vh - var(--header-height));
  padding: 30px 0;
  background: var(--bg-page);
}

.static-layout {
  display: flex;
  gap: 24px;
}

.static-sidebar {
  width: 200px;
  flex-shrink: 0;
}

.static-main {
  flex: 1;
  min-width: 0;
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.static-menu {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.static-menu-title {
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-orange));
  color: #fff;
}

.static-menu-item {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  border-left: 3px solid transparent;
}

.static-menu-item:hover {
  background: #fffaf5;
  color: var(--primary-orange);
}

.static-menu-item.active {
  background: #fffaf5;
  color: var(--primary-orange);
  border-left-color: var(--primary-orange);
  font-weight: 600;
}

.static-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f5f5f5;
}

.static-content {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
}

.static-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 24px 0 12px;
}

.static-content p {
  margin-bottom: 16px;
}

.static-content ul,
.static-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.static-content li {
  margin-bottom: 8px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.contact-item {
  padding: 20px;
  background: #fafafa;
  border-radius: 8px;
  text-align: center;
}

.contact-item-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.contact-item-title {
  font-size: 14px;
  color: #999;
  margin-bottom: 6px;
}

.contact-item-value {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-orange);
}

.help-list {
  list-style: none;
  padding: 0;
}

.help-item {
  padding: 16px 0;
  border-bottom: 1px solid #f5f5f5;
}

.help-item:last-child {
  border-bottom: none;
}

.help-question {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.help-question::after {
  content: '+';
  font-size: 20px;
  color: var(--primary-gold);
  transition: all 0.3s;
}

.help-item.active .help-question::after {
  content: '−';
}

.help-answer {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
}

.help-item.active .help-answer {
  max-height: 500px;
  padding-top: 8px;
}

@media (max-width: 900px) {
  .static-layout {
    flex-direction: column;
  }
  
  .static-sidebar {
    width: 100%;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
}
