
.cta-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #212529 0%, #495057 100%);
  color: #ffffff;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.cta-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.cta-description {
  font-size: 2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 1.5rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  min-width: 200px;
}

.cta-btn.primary {
  background: #ffffff;
  color: #212529;
  border: 2px solid #ffffff;
}

.cta-btn.primary:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.cta-btn.secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.cta-btn.secondary:hover {
  background: #ffffff;
  color: #212529;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* CTA Responsive Design */
@media (max-width: 992px) {
  .cta-title {
    font-size: 3.2rem;
  }
  
  .cta-description {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 6rem 0;
  }
  
  .cta-title {
    font-size: 2.8rem;
  }
  
  .cta-description {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 4rem 0;
  }
  
  .cta-container {
    padding: 0 1rem;
  }
  
  .cta-title {
    font-size: 2.4rem;
  }
  
  .cta-description {
    font-size: 1.4rem;
  }
  
  .cta-btn {
    padding: 1.2rem 2rem;
    font-size: 1.6rem;
  }
}
