.accordion {
background-color: #f4f4f4;
color: #333;
cursor: pointer;
padding: 14px 20px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 16px;
font-weight: bold;
transition: background-color 0.3s ease;
border-bottom: 1px solid #ddd;
}
.active, .accordion:hover {
background-color: #e0e0e0;
}
.panel...