/* Стили для секции криптовалют */
.content-section {
  padding: 60px 0;
  background-color: #1a1a1a;
  color: #e0e0e0;
  line-height: 1.6;
}

.content-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-section h2 {
  color: #4CAF50;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
  position: relative;
  padding-bottom: 10px;
}

.content-section h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #4CAF50, transparent);
}

.content-section p {
  margin-bottom: 20px;
  font-size: 16px;
}

.content-section ul, 
.content-section ol {
  margin: 20px 0;
  padding-left: 30px;
}

.content-section li {
  margin-bottom: 12px;
  position: relative;
}

.content-section ul li:before {
  content: '•';
  color: #4CAF50;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.content-section ol {
  counter-reset: item;
}

.content-section ol li {
  counter-increment: item;
}

.content-section ol li:before {
  content: counter(item) ".";
  color: #4CAF50;
  font-weight: bold;
  display: inline-block;
  width: 1.5em;
  margin-left: -1.5em;
}

.content-section strong {
  color: #4CAF50;
  font-weight: 600;
}

/* Адаптивность */
@media (max-width: 768px) {
  .content-section {
    padding: 40px 0;
  }
  
  .content-section h2 {
    font-size: 24px;
  }
  
  .content-section p, 
  .content-section li {
    font-size: 15px;
  }
}

/* Анимации для лучшего UX */
.content-section h2 {
  transition: all 0.3s ease;
}

.content-section li {
  transition: transform 0.2s ease;
}

.content-section li:hover {
  transform: translateX(5px);
}