.cta-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  border: 2px solid #d4af37;
  border-radius: 20px;
  padding: 60px;
  text-align: center;
  margin: 60px auto;
  max-width: 900px;
}

.cta-section h3 {
  font-family: Coldiac;
  font-size: 36px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-section p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #cccccc;
  margin-bottom: 30px;
  line-height: 1.8; /* UPDATED: improves readability consistency */
}

.cta-section .btn {
  display: inline-block;
  padding: 15px 40px;
  /* UPDATED: buttons should use McQueen */
  font-family: McQueen, 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #121212;
  background-color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-section .btn:hover {
  background-color: #d4af37;
  border-color: #d4af37;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-section {
    padding: 40px 25px;
  }
  
  .cta-section h3 {
    font-size: 24px;
  }
  
  .cta-section p {
    font-size: 16px;
  }
}