/* Challenged Driver Section Styles */
.challenged-driver-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(122, 12, 37, 0.05), rgba(212, 184, 114, 0.05));
  position: relative;
}

.challenged-driver-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.challenged-driver-content h2 {
  color: var(--primary-color);
  margin-bottom: 25px;
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.challenged-driver-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

.challenged-driver-content p {
  margin-bottom: 20px;
  color: #555;
  line-height: 1.7;
}

.challenged-driver-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.challenged-driver-image img {
  width: 100%;
  display: block;
  border-radius: 15px;
}

.driver-challenges-list {
  margin-top: 30px;
}

.driver-challenge-item {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: var(--box-shadow);
  display: flex;
  align-items: flex-start;
  transition: var(--transition);
}

.driver-challenge-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.challenge-icon {
  background: rgba(122, 12, 37, 0.1);
  color: var(--primary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.challenge-icon i {
  font-size: 1.5rem;
}

.challenge-content h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.challenge-content p {
  margin-bottom: 0;
  color: #666;
}

.get-help-btn {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  box-shadow: 0 5px 15px rgba(122, 12, 37, 0.2);
}

.get-help-btn i {
  margin-right: 10px;
}

.get-help-btn:hover {
  background: #8a0e2a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(122, 12, 37, 0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .challenged-driver-container {
    grid-template-columns: 1fr;
  }
  
  .challenged-driver-image {
    order: 1;
    margin-bottom: 30px;
  }
  
  .challenged-driver-content {
    order: 2;
  }
}
