.pepper-challenge {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  gap: 20px;
}

.pepper-challenge .content {
  width: 65%;
  max-width: 800px;
}

.pepper-challenge h1 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.pepper-challenge h2 {
  font-size: 2rem;
  color: #e74c3c;
  margin-bottom: 15px;
}

.pepper-challenge h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin: 25px 0 15px 0;
}

.pepper-challenge p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #34495e;
  margin-bottom: 15px;
}

.challenge-hero {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 30px 0;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 10px;
  border-left: 5px solid #e74c3c;
}

.challenge-image {
  width: 200px;
  height: auto;
  border-radius: 10px;
}

.challenge-text {
  flex: 1;
}

.challenge-text h2 {
  margin-bottom: 10px;
}

.challenge-details {
  background-color: #fff3cd;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #ffeaa7;
  margin: 25px 0;
}

.challenge-details ul {
  list-style-type: none;
  padding: 0;
}

.challenge-details li {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #856404;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.challenge-details li:before {
  content: "🌶️";
  position: absolute;
  left: 0;
  top: 0;
}

.challenge-history {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin: 25px 0;
}

.signup-section {
  text-align: center;
  margin: 30px 0;
  padding: 20px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border-radius: 10px;
}

.signup-section .btn-highlight {
  display: inline-block;
  padding: 20px 40px;
  background-color: #fff;
  color: #e74c3c;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.signup-section .btn-highlight:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.pepper-challenge .btn-highlight {
  display: inline-block;
  padding: 15px 30px;
  background-color: #e74c3c;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 20px;
}

.pepper-challenge .btn-highlight:hover {
  background-color: #c0392b;
}

.pepper-challenge .bob-photo {
  width: 30%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive design */
@media (max-width: 768px) {
  .pepper-challenge {
    flex-direction: column;
    align-items: center;
  }
  
  .pepper-challenge .content {
    width: 100%;
  }
  
  .pepper-challenge .bob-photo {
    width: 100%;
    max-width: 300px;
    margin-top: 20px;
  }
  
  .challenge-hero {
    flex-direction: column;
    text-align: center;
  }
  
  .challenge-image {
    width: 150px;
  }
  
  .pepper-challenge h1 {
    font-size: 2rem;
  }
  
  .pepper-challenge h2 {
    font-size: 1.5rem;
  }
}
