
        body {
            margin: 0;
            font-family: Arial, sans-serif;
        }

        .toggle-container {
            width: 100%;
            border-bottom: 10px solid #ccc;
        }

        /* Hide the actual checkbox */
        .toggle-container input[type="checkbox"] {
            display: none;
        }

        /* Style the label */
        .toggle-label {
            display: block;
            background:#d9d8ca;
            color: black;
            padding: 15px;
            cursor: pointer;
            font-size: 18px;
            width: 100%;
            box-sizing: border-box;
        }

        /* Content section (hidden by default) */
        .content {
            display: none;
            background: #f0f0f0;
            padding: 20px;
            width: 100%;
            box-sizing: border-box;
        }

        /* Show content when corresponding checkbox is checked */
        .toggle-container input[type="checkbox"]:checked ~ .content {
            display: block;
        }
