.cta-section {
  padding: 8rem 4rem;
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  color: #ffffff;
}

.cta-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.cta-description {
  font-size: 2rem;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-block;
  padding: 1.5rem 3rem;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cta-btn.primary {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.cta-btn.primary:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

@media (max-width: 992px) {
  .cta-section {
    padding: 6rem 2rem;
  }
  
  .cta-title {
    font-size: 3.2rem;
  }
  
  .cta-description {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 4rem 1.5rem;
  }
  
  .cta-title {
    font-size: 2.8rem;
  }
  
  .cta-description {
    font-size: 1.6rem;
  }
  
  .cta-btn {
    padding: 1.2rem 2.4rem;
    font-size: 1.6rem;
  }
} 