🚀 LEVEL UP TO SENIOR:Unlock 500+ Advanced Practical Challenges & Exercises.
🎓 COURSERA PARTNER:Earn professional Google, Meta, and IBM certificates to supercharge your resume.

Project 11: FAQ Accordion

CSS Stylist
Step 1 of 3
Project

Box Shadows

Give .faq-item a subtle box-shadow: 0 1px 3px rgba(0,0,0,0.1) — a soft shadow that lifts each accordion row off the background just enough to read as a distinct, clickable card.

🎯 Your Task

Please add the exact code shown in the light gray box below to your editor.Do not delete your previous code, just insert these new lines in the correct place!

.faq-item {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 16px;
  margin-bottom: 8px;
}