* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(135deg, #0c0c1d, #1a1a3a);
  color: #e0e0ff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

header {
  padding: 40px 0;
  text-align: center;
  position: relative;
}

.logo {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #7b68ee;
  text-shadow: 0 0 15px rgba(123, 104, 238, 0.5);
  margin-bottom: 20px;
  position: relative;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 10%;
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #7b68ee, transparent);
}

.tagline {
  font-size: 1.2rem;
  color: #a0a0d0;
  margin-bottom: 30px;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 0;
  gap: 40px;
}

.hero-content {
  flex: 1;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #7b68ee, #9370db);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #b8b8e0;
}

.cta-button {
  background: linear-gradient(45deg, #7b68ee, #9370db);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(123, 104, 238, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(123, 104, 238, 0.5);
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.crypto-animation {
  position: relative;
  width: 300px;
  height: 300px;
}

.coin {
  position: absolute;
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  animation: float 3s ease-in-out infinite;
}

#coin1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

#coin2 {
  top: 60%;
  left: 20%;
  animation-delay: 1s;
}

#coin3 {
  top: 30%;
  right: 15%;
  animation-delay: 2s;
}

.mixer-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, #7b68ee, #9370db);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(123, 104, 238, 0.6);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.05); }
}

.content-section {
  padding: 80px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.content-card {
  background: rgba(30, 30, 60, 0.7);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(123, 104, 238, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}

.content-card:hover {
  transform: translateY(-10px);
  border-color: #7b68ee;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.content-card h3 {
  color: #7b68ee;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.content-card p {
  color: #c0c0f0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.image-container {
  margin-top: auto;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  height: 200px;
  background: rgba(20, 20, 40, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.content-card:hover .content-image {
  transform: scale(1.05);
}

.photo-gallery {
  padding: 80px 0;
  background: rgba(20, 20, 40, 0.3);
  margin: 40px 0;
  border-radius: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 250px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  background: rgba(40, 40, 80, 0.5);
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(123, 104, 238, 0.2);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(12, 12, 29, 0.9));
  padding: 30px 20px 20px;
  color: white;
  transform: translateY(10px);
  transition: all 0.3s ease;
  opacity: 0;
  z-index: 3;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
  opacity: 1;
}

.gallery-overlay h4 {
  color: #7b68ee;
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.gallery-overlay p {
  color: #b8b8e0;
  font-size: 0.9rem;
}

/* Новые стили для секции сравнения */
.mixer-comparison {
  padding: 80px 0;
  background: rgba(25, 25, 50, 0.5);
  margin: 40px 0;
  border-radius: 20px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.comparison-card {
  background: rgba(40, 40, 80, 0.7);
  padding: 35px;
  border-radius: 15px;
  border: 2px solid rgba(123, 104, 238, 0.2);
  transition: all 0.3s ease;
}

.comparison-card.highlight {
  border-color: #7b68ee;
  box-shadow: 0 15px 35px rgba(123, 104, 238, 0.2);
  transform: scale(1.02);
  position: relative;
}

.comparison-card.highlight::before {
  content: '★ Recommended';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #7b68ee;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
}

.comparison-card h3 {
  color: #9370db;
  margin-bottom: 25px;
  text-align: center;
  font-size: 1.4rem;
}

.features-list {
  list-style: none;
}

.features-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 30px;
  color: #e0e0ff;
}

.features-list.positive li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #32cd32;
  font-weight: bold;
  font-size: 1.1rem;
}

.features-list.negative li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #ff4444;
  font-weight: bold;
  font-size: 1.1rem;
}

.features-list.positive li:last-child,
.features-list.negative li:last-child {
  border-bottom: none;
}

/* Стили для features секции */
.features {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #7b68ee;
  position: relative;
  z-index: 10;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  position: relative;
  z-index: 5;
}

.feature-item {
  background: rgba(40, 40, 80, 0.5);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #7b68ee;
  transition: all 0.3s ease;
  position: relative;
  z-index: 5;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.feature-item h4 {
  color: #9370db;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.feature-item p {
  color: #c0c0f0;
  line-height: 1.6;
}

/* Стили для technology секции */
.technology {
  padding: 80px 0;
  position: relative;
  z-index: 5;
}

.tech-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  text-align: justify;
  position: relative;
  z-index: 5;
}

.tech-content p {
  margin-bottom: 25px;
  color: #c0c0f0;
  line-height: 1.7;
}

/* Стили для CTA секции */
.cta-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(123, 104, 238, 0.1), rgba(147, 112, 219, 0.1));
  border-radius: 20px;
  margin: 40px 0;
  position: relative;
  z-index: 5;
}

.cta-container h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #7b68ee;
}

.cta-container p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #b8b8e0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button.primary {
  background: linear-gradient(45deg, #7b68ee, #9370db);
  color: white;
}

.cta-button.secondary {
  background: transparent;
  border: 2px solid #7b68ee;
  color: #7b68ee;
}

.cta-button.secondary:hover {
  background: rgba(123, 104, 238, 0.1);
}

/* Стили для футера */
footer {
  background: rgba(10, 10, 30, 0.9);
  padding: 40px 0;
  text-align: center;
  margin-top: 60px;
  border-top: 1px solid rgba(123, 104, 238, 0.3);
  position: relative;
  z-index: 5;
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #7b68ee;
  margin-bottom: 15px;
}

.footer-content p {
  color: #a0a0d0;
  margin-bottom: 20px;
}

.footer-links {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: #a0a0d0;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 5px 10px;
  border-radius: 5px;
}

.footer-links a:hover {
  color: #7b68ee;
  background: rgba(123, 104, 238, 0.1);
}

/* Стили для ключевых слов */
strong {
  color: #9370db;
  font-weight: 600;
}

.tech-content strong {
  background: linear-gradient(45deg, #7b68ee, #9370db);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* УДАЛЕНО: Placeholder стили для отсутствующих изображений */
/* .image-container::before,
.gallery-item::before {
  content: "Image Placeholder";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #7b68ee;
  font-size: 1rem;
  text-align: center;
  z-index: 1;
}

.image-container::before {
  content: "Cryptographic Technology\n(crypto-tech.jpg)";
  white-space: pre;
}

.gallery-item:nth-child(1)::before {
  content: "Advanced Security\n(security.jpg)";
  white-space: pre;
}

.gallery-item:nth-child(2)::before {
  content: "Blockchain Technology\n(blockchain.jpg)";
  white-space: pre;
}

.gallery-item:nth-child(3)::before {
  content: "Data Analytics\n(analytics.jpg)";
  white-space: pre;
} */

/* Стили для placeholder'ов при отсутствии изображений */
.image-container:has(img[src=""])::before,
.image-container:not(:has(img))::before,
.gallery-item:has(img[src=""])::before,
.gallery-item:not(:has(img))::before {
  content: "Image\APlaceholder";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #7b68ee;
  font-size: 1rem;
  text-align: center;
  white-space: pre;
  z-index: 1;
}

/* Адаптивность */
@media (max-width: 768px) {
  .hero {
      flex-direction: column;
      text-align: center;
  }
  
  .hero-title {
      font-size: 2.2rem;
  }
  
  .content-grid {
      grid-template-columns: 1fr;
  }
  
  .features-grid {
      grid-template-columns: 1fr;
  }
  
  .gallery-grid {
      grid-template-columns: 1fr;
  }
  
  .gallery-item {
      height: 200px;
  }
  
  .comparison-grid {
      grid-template-columns: 1fr;
  }
  
  .cta-buttons {
      flex-direction: column;
      align-items: center;
  }
  
  .cta-button {
      width: 100%;
      max-width: 300px;
  }
  
  .footer-links {
      flex-direction: column;
      gap: 10px;
  }
  
  .section-title {
      font-size: 2rem;
  }
  
  .logo {
      font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
      padding: 0 15px;
  }
  
  .hero-title {
      font-size: 1.8rem;
  }
  
  .section-title {
      font-size: 1.6rem;
  }
  
  .content-card, .feature-item, .comparison-card {
      padding: 20px;
  }
  
  .cta-container h2 {
      font-size: 1.8rem;
  }
}
/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background: rgba(25, 25, 50, 0.3);
    margin: 40px 0;
    border-radius: 20px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.faq-item {
    background: rgba(40, 40, 80, 0.5);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #7b68ee;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(123, 104, 238, 0.2);
}

.faq-item h3 {
    color: #9370db;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #c0c0f0;
    line-height: 1.6;
}

/* Copyright Styles */
.copyright {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0a0d0;
    font-size: 0.9rem;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
/* FAQ Section Styles - Unique Design */
.faq-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(20, 20, 40, 0.8), rgba(30, 30, 60, 0.9));
  margin: 60px 0;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(123, 104, 238, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

.faq-section .section-title {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.faq-item {
  background: linear-gradient(145deg, rgba(40, 40, 80, 0.8), rgba(50, 50, 100, 0.6));
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(123, 104, 238, 0.3);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(123, 104, 238, 0.1), transparent);
  transition: left 0.6s ease;
}

.faq-item:hover::before {
  left: 100%;
}

.faq-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #7b68ee;
  box-shadow: 0 15px 40px rgba(123, 104, 238, 0.3);
}

.faq-item h3 {
  color: #7b68ee;
  margin-bottom: 20px;
  font-size: 1.3rem;
  font-weight: 600;
  position: relative;
  padding-left: 40px;
  line-height: 1.4;
}

.faq-item h3::before {
  content: '?';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: linear-gradient(45deg, #7b68ee, #9370db);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(123, 104, 238, 0.4);
}

.faq-item p {
  color: #d0d0ff;
  line-height: 1.7;
  font-size: 1rem;
  position: relative;
  padding-left: 15px;
  border-left: 2px solid rgba(123, 104, 238, 0.3);
  transition: all 0.3s ease;
}

.faq-item:hover p {
  border-left-color: #7b68ee;
  padding-left: 20px;
}

/* FAQ Accordion Effect */
.faq-item {
  cursor: pointer;
}

.faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
}

.faq-item .faq-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.faq-item .faq-icon::before,
.faq-item .faq-icon::after {
  content: '';
  position: absolute;
  background: #7b68ee;
  transition: all 0.3s ease;
}

.faq-item .faq-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.faq-item .faq-icon::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-item.active .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

/* FAQ Search Bar */
.faq-search {
  max-width: 500px;
  margin: 0 auto 40px;
  position: relative;
}

.faq-search input {
  width: 100%;
  padding: 15px 50px 15px 20px;
  background: rgba(30, 30, 60, 0.8);
  border: 2px solid rgba(123, 104, 238, 0.3);
  border-radius: 50px;
  color: #e0e0ff;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.faq-search input:focus {
  outline: none;
  border-color: #7b68ee;
  box-shadow: 0 0 20px rgba(123, 104, 238, 0.3);
  background: rgba(40, 40, 80, 0.9);
}

.faq-search input::placeholder {
  color: #a0a0d0;
}

.faq-search::after {
  content: '🔍';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #7b68ee;
}

/* FAQ Categories */
.faq-categories {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.faq-category {
  background: rgba(40, 40, 80, 0.6);
  padding: 10px 20px;
  border-radius: 25px;
  border: 1px solid rgba(123, 104, 238, 0.2);
  color: #b8b8e0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.faq-category:hover,
.faq-category.active {
  background: linear-gradient(45deg, #7b68ee, #9370db);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(123, 104, 238, 0.3);
}

/* FAQ Stats */
.faq-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  text-align: center;
}

.faq-stat {
  background: rgba(40, 40, 80, 0.5);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(123, 104, 238, 0.2);
  min-width: 120px;
}

.faq-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #7b68ee;
  margin-bottom: 5px;
}

.faq-stat-label {
  font-size: 0.9rem;
  color: #a0a0d0;
}

/* Floating Elements */
.faq-floating {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #7b68ee, #9370db);
  border-radius: 50%;
  animation: float-faq 4s ease-in-out infinite;
  opacity: 0.1;
  pointer-events: none;
}

.faq-floating:nth-child(1) {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.faq-floating:nth-child(2) {
  top: 20%;
  right: 10%;
  animation-delay: 1s;
  width: 40px;
  height: 40px;
}

.faq-floating:nth-child(3) {
  bottom: 15%;
  left: 15%;
  animation-delay: 2s;
  width: 50px;
  height: 50px;
}

@keyframes float-faq {
  0%, 100% {
      transform: translateY(0px) rotate(0deg);
  }
  50% {
      transform: translateY(-20px) rotate(180deg);
  }
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq-grid {
      grid-template-columns: 1fr;
  }
  
  .faq-item {
      padding: 25px 20px;
  }
  
  .faq-item h3 {
      padding-left: 35px;
      font-size: 1.2rem;
  }
  
  .faq-item h3::before {
      width: 25px;
      height: 25px;
      font-size: 0.9rem;
  }
  
  .faq-search {
      max-width: 100%;
      margin: 0 20px 40px;
  }
  
  .faq-categories {
      gap: 10px;
      padding: 0 20px;
  }
  
  .faq-category {
      padding: 8px 16px;
      font-size: 0.8rem;
  }
  
  .faq-stats {
      gap: 20px;
      flex-wrap: wrap;
  }
  
  .faq-stat {
      min-width: 100px;
      padding: 15px;
  }
  
  .faq-stat-number {
      font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .faq-section {
      padding: 60px 0;
      margin: 40px 0;
      border-radius: 20px;
  }
  
  .faq-item {
      padding: 20px 15px;
  }
  
  .faq-item h3 {
      padding-left: 30px;
      font-size: 1.1rem;
  }
  
  .faq-item h3::before {
      width: 22px;
      height: 22px;
      font-size: 0.8rem;
  }
}

/* Content Section Header Styles */
.content-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #7b68ee;
    background: linear-gradient(135deg, #7b68ee, #9370db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #b8b8e0;
    margin-bottom: 50px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Адаптивность */
@media (max-width: 768px) {
    .content-section .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
        padding: 0 15px;
    }
}