/* CTA Section */
.cta-section {
  padding: 8rem 4rem;
  background: #000000;
  color: #ffffff;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.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: 180px;
}

.cta-btn.primary {
  background: #ffffff;
  color: #000000;
  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: #000000;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Responsive Design for CTA Section */
@media (max-width: 768px) {
  .cta-title {
    font-size: 3rem;
  }
  
  .cta-description {
    font-size: 1.8rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 4rem 2rem;
  }
  
  .cta-title {
    font-size: 2.5rem;
  }
  
  .cta-btn {
    padding: 1.2rem 2rem;
    font-size: 1.6rem;
    min-width: 160px;
  }
} 