﻿details {
    border: 1px solid #0f6735;
    border-radius: 12px;
    margin-bottom: 12px;
}

    details summary {
        background: #0f6735;
        color: #fff;
        padding: 15px;
        border-radius: 12px;
        cursor: pointer;
        font-weight: 700;
        font-size: 17px;
        list-style: none;
    }

    details[open] summary {
        border-radius: 12px 12px 0 0;
        background: #e96f00;
    }

    details summary::-webkit-details-marker {
        display: none;
    }

    details p {
        padding: 15px;
        background: #fff3e6;
        margin: 0;
        font-size: 15px;
    }

    details ul {
        padding: 15px;
        padding-left: 30px;
        background: #fff3e6;
        margin: 0;
        font-size: 15px;
    }
