/* AI Page Specific Styles */

/* AI Challenges Section */
.ai-challenges-section {
  background-color: #00aeef;
  padding: 80px 20px;
}

.ai-challenges-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ai-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.ai-section-header h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.2;
}

.ai-section-header p {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  color: #000;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Challenge Cards */
.ai-challenge-card {
  background: #ffffff;
  background-color: var(--vId-color-token-c);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 30px;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

/*.ai-challenge-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #00aeef 0%, #0085ff 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
*/
.challenge-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00aeef 0%, #0085ff 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

.challenge-content {
  flex: 1;
}

.challenge-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.4;
}

.challenge-problem,
.challenge-solution {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.challenge-problem strong,
.challenge-solution strong {
  color: #111;
  font-weight: 600;
}

.challenge-problem {
  padding: 15px;
  background-color: #fff5f5;
  border-left: 3px solid #ff4949;
  border-radius: 4px;
}

.challenge-solution {
  padding: 15px;
  background-color: #e7faf0;
  border-left: 3px solid #13ce66;
  border-radius: 4px;
}

/* CTA Section */
.ai-cta-section {
  background-color: var(--vId-color-token-c);
  padding: 80px 20px;
  text-align: center;
}

.ai-cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.ai-cta-container h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.ai-cta-container p {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0.95;
}

.ai-cta-container .home-e-4 {
  background-color: #ffffff;
  color: #00aeef;
  transition: all 0.3s ease;
}

.ai-cta-container .home-e-4:hover {
  background-color: #111;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.ai-cta-container .home-e-4 a p {
  color: #00aeef;
}

.ai-cta-container .home-e-4:hover a p {
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .ai-section-header h2 {
    font-size: 32px;
  }

  .ai-section-header p {
    font-size: 16px;
  }

  .ai-challenge-card {
    flex-direction: column;
    padding: 30px 25px;
    gap: 20px;
  }

  .challenge-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .challenge-title {
    font-size: 20px;
  }

  .challenge-problem,
  .challenge-solution {
    font-size: 15px;
    padding: 12px;
  }

  .ai-cta-container h2 {
    font-size: 28px;
  }

  .ai-cta-container p {
    font-size: 16px;
  }

  .ai-challenges-section,
  .ai-cta-section {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .ai-section-header h2 {
    font-size: 28px;
  }

  .challenge-title {
    font-size: 18px;
  }

  .ai-cta-container h2 {
    font-size: 24px;
  }
}
