@charset "ISO-8859-1";

details {
    width: 100%;
    /*max-width: 800px;*/
    margin: 10px auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
}

details:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

summary {
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    user-select: none;
    color:black;
}

summary::-webkit-details-marker {
    display: none;
}
summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: bold;
}

details[open] summary::after {
    content: '-';
}

.answer {
    padding: 0 20px 20px 20px;
    line-height: 1.6;
    color: #333;
}

.answer p {
    margin: 0;
}
.title{
	color:black;
	font-size: 24px;
    font-weight: bold;
}

details[open] {
    border-color: #007bff;
}